problem with text property

  • Thread starter Thread starter Petr Svoboda
  • Start date Start date
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
 
Back
Top