. .
public class MyLabel:Label
{
public MyLabel():base()
{
base.AutoSize = false;
}
}
, . , .
, , , InitLayout, , AutoSize, :
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
[DefaultValue(false)]
public override bool AutoSize
{
get
{
return base.AutoSize;
}
set
{
base.AutoSize = value;
}
}
protected override void InitLayout()
{
base.InitLayout();
base.AutoSize = false;
}
, , , [Form].Designer.cs :
this.label1 = new MyLabel();// new System.Windows.Forms.Label();
//this.label1.AutoSize = true;
AutoSize, , , , AutoSize