XAMLExport.DesignExt.cs 409 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace FastReport.Export.XAML
  5. {
  6. partial class XAMLExport
  7. {
  8. /// <inheritdoc/>
  9. public override bool ShowDialog()
  10. {
  11. using (FastReport.Forms.XAMLExportForm dialog = new FastReport.Forms.XAMLExportForm())
  12. {
  13. return dialog.ShowDialog(this);
  14. }
  15. }
  16. }
  17. }