Live Chat Icon For mobile
Live Chat Icon

How do I make some properties not browsable in the designer, but browsable in the editor?

Platform: WinForms| Category: UI

Provide the following attributes to your Property:


[Browsable(false), EditorBrowsable(EditorBrowsableState.Always)]
public bool YourProperty{get{}set{}}

Share with