P
Petr Svoboda
Hello!
I use UserControl, but property Text do not show in properties
window in designer.
I test it -
[
EditorBrowsable(EditorBrowsableState.Always)
]
public override string Text
{
get
{
return base.Text;
}
set
{
base.Text = value;
this.Invalidate();
}
}
But Text still not show.
Please help me.
Petr
I use UserControl, but property Text do not show in properties
window in designer.
I test it -
[
EditorBrowsable(EditorBrowsableState.Always)
]
public override string Text
{
get
{
return base.Text;
}
set
{
base.Text = value;
this.Invalidate();
}
}
But Text still not show.
Please help me.
Petr