PanelControl.DesignExt.cs 415 B

123456789101112131415161718192021
  1. using System.ComponentModel;
  2. namespace FastReport.Dialog
  3. {
  4. partial class PanelControl
  5. {
  6. #region Properties
  7. /// <summary>
  8. /// This property is not relevant to this class.
  9. /// </summary>
  10. [Browsable(false)]
  11. public override string Text
  12. {
  13. get { return base.Text; }
  14. set { base.Text = value; }
  15. }
  16. #endregion
  17. }
  18. }