namespace Yw.WinFrmUI.Phart { public class XtrTitle : XtrBase { /// /// 文本 /// public string Text { get; set; } /// /// 字体 /// public XtrFont Font { get; set; } /// /// 对齐方式(如左对齐、居中等) /// public System.Windows.TextAlignment Alignment { get; set; } /// /// 文本与边缘的内边距 /// public Padding Padding { get; set; } /// /// 背景颜色 /// public Color BackColor { get; set; } /// /// 边框 /// public XtrBorder Border { get; set; } } }