I have a custom combobox and have the Text property overridden as listed below:
[DefaultValue(""]
public override string Text
{
get
{
return base.Text;
}
set
{
base.Text = value;
}
}
When I add one of these custom comboboxes to the designer the Text property is still listing the name of the control (ex. "customCombobox1" instead of "" What am I doing wrong? No exceptions or errors occur on complilation or execution.
[DefaultValue(""]
public override string Text
{
get
{
return base.Text;
}
set
{
base.Text = value;
}
}
When I add one of these custom comboboxes to the designer the Text property is still listing the name of the control (ex. "customCombobox1" instead of "" What am I doing wrong? No exceptions or errors occur on complilation or execution.