LaTeXExportForm.cs 712 B

1234567891011121314151617181920212223242526272829
  1. using System.Windows.Forms;
  2. using FastReport.Export.LaTeX;
  3. using FastReport.Utils;
  4. namespace FastReport.Forms
  5. {
  6. /// <summary>
  7. /// Form for <see cref="LaTeXExport"/>.
  8. /// For internal use only.
  9. /// </summary>
  10. public partial class LaTeXExportForm : BaseExportForm
  11. {
  12. /// <inheritdoc/>
  13. public override void Localize()
  14. {
  15. base.Localize();
  16. MyRes res = new MyRes("Export,LaTeX");
  17. Text = res.Get("");
  18. }
  19. /// <summary>
  20. /// Initializes a new instance of the <see cref="LaTeXExportForm"/> class.
  21. /// </summary>
  22. public LaTeXExportForm()
  23. {
  24. InitializeComponent();
  25. }
  26. }
  27. }