problem with text property

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top