vote up 0 vote down star

Hi,

I could able to display my custom controls properties in the property window (using EditorBrowsable() attribute). But I have another property which has class as it's return type. So the same property appearing in the window as read only format. I need property it should take the class values at design time just like,

Font
    Name="Verdana"
    Size="12"
flag

0% accept rate

1 Answer

vote up 1 vote down

Instead of using EditorBrowsable() use:

System.ComponentModel.Browsable()
System.ComponentModel.DefaultValue()
System.ComponentModel.Category()

The DefaultValue will tell the design that the property has a default value and wont try to set it unless changed. The Category puts your property in a specific category. These two properties aren't needed but are nice to use.

link|flag
Thanks for the response. I was asking in .net compact framework 2.0 – Nagaraj May 18 at 11:16

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.