1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
| #region
|
| using System.ComponentModel;
| using DevExpress.XtraEditors;
|
| #endregion
|
| namespace CSFrameworkV5.Library.UserControls
| {
| public partial class ucWindowTitle : XtraUserControl
| {
| public ucWindowTitle()
| {
| InitializeComponent();
| }
|
| [Description("操作状态")]
| [DefaultValue("(操作状态)")]
| public string StateName
| {
| get => lblStatus.Text;
| set => lblStatus.Text = value;
| }
|
| [Description("请设置窗体标题")]
| [DefaultValue("请设置窗体标题(Window Title)")]
| public string Title
| {
| get => lblTitle.Text;
| set => lblTitle.Text = value;
| }
| }
| }
|
|