XPSExport.DesignExt.cs 405 B

123456789101112131415161718
  1. namespace FastReport.Export.OoXML
  2. {
  3. partial class XPSExport
  4. {
  5. #region Public Methods
  6. /// <inheritdoc/>
  7. public override bool ShowDialog()
  8. {
  9. using (FastReport.Forms.XpsExportForm dialog = new FastReport.Forms.XpsExportForm())
  10. {
  11. return dialog.ShowDialog(this);
  12. }
  13. }
  14. #endregion Public Methods
  15. }
  16. }