Relation.DesignExt.cs 546 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Data;
  5. using System.Windows.Forms;
  6. using System.ComponentModel;
  7. using FastReport.Utils;
  8. using FastReport.Forms;
  9. using FastReport.TypeConverters;
  10. namespace FastReport.Data
  11. {
  12. partial class Relation : IHasEditor
  13. {
  14. #region Public Methods
  15. /// <inheritdoc/>
  16. public bool InvokeEditor()
  17. {
  18. using (RelationEditorForm form = new RelationEditorForm(this))
  19. {
  20. return form.ShowDialog() == DialogResult.OK;
  21. }
  22. }
  23. #endregion
  24. }
  25. }