123456789101112131415161718192021 |
- using System.ComponentModel;
- namespace FastReport.Dialog
- {
- partial class PanelControl
- {
- #region Properties
- /// <summary>
- /// This property is not relevant to this class.
- /// </summary>
- [Browsable(false)]
- public override string Text
- {
- get { return base.Text; }
- set { base.Text = value; }
- }
- #endregion
- }
- }
|