摘要: ------------------------------public partial class UserControl1 : UserControl {[DefaultValue(typeof(string), "Init 标签"), Category("属性标签"), Description("设置文本的标签.")] public string SealLabelText { get { return label1.Text; } set { label1.Text = value; this.Invalidate(); } 阅读全文