vote up 3 vote down star
1

I have a UserControl in my Asp.net project that has a public property. I do not want this property to show up in the Visual Studio Property Window when a user highlights an instance of the UserControl in the IDE. What attribute (or other method) should I use to prevent it from showing up?

class MyControl : System.Web.UI.UserControl {
  // Attribute to prevent property from showing in VS Property Window?
  public bool SampleProperty { get; set; }

  // other stuff
}
flag

3 Answers

vote up 7 vote down check

Use the following attribute ...

using System.ComponentModel;

[Browsable(false)]
public bool SampleProperty { get; set; }

In VB.net, this will be:

<System.ComponentModel.Browsable(False)>
link|flag
Missed it by that much. – Will Sep 16 '08 at 11:43
This does look like the "Fastest Gun in StackOverFlow" contest. – Codeslayer Sep 16 '08 at 11:48
vote up 2 vote down

Tons of attributes out there to control how the PropertyGrid works.

[Browsable(false)]
public bool HiddenProperty {get;set;}
link|flag
vote up 2 vote down

Use the System.ComponentModel.Browsable attribute to

> ' VB
> 
>     <System.ComponentModel.Browsable(False)>

or

// C#
    [System.ComponentModel.Browsable(false)]
link|flag

Your Answer

Get an OpenID
or

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