#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; } } }