M
Maxwell2006
Hi,
I created base UserControl for visual inheritance. The base control includes
the following property:
[Category("Appearance")]
[Description("The button text")]
[DefaultValue("Hi")]
public string ButtonText {
get {return this.button1.Text;}
set { this.button1.Text = value; }
}
But the property "ButtonText" does not appears in property window.
How can I add property window support to my Visual Inheritance procatice?
Thank you,
Max
I created base UserControl for visual inheritance. The base control includes
the following property:
[Category("Appearance")]
[Description("The button text")]
[DefaultValue("Hi")]
public string ButtonText {
get {return this.button1.Text;}
set { this.button1.Text = value; }
}
But the property "ButtonText" does not appears in property window.
How can I add property window support to my Visual Inheritance procatice?
Thank you,
Max