User Control Property
C#
1
Posts
1
Posters
0
Views
1
Watching
-
I am designing a user control. There is one property that I would like to hide from the Property box at design time. Is there a way to do this? I would like to use the convenience of the property set method so it is easy to set during runtime, but prevent setting it to anything at design time. Updated: Of course I found the answer just after posting, set an attribute above the property's code: [Browsable(false)]