If you have a user control with a field like public int number = 10; can you make that value come up in the properties box when you use the designer in VS 2010 and C#?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

You have to turn your variable into a property. Try adding Get Set and sometimes you have to add the proper attributes (referencing the System.ComponentModel class)

private int _Number = 10;

[DefaultValue(10)]
[Description("This is a number.")]
public int Number
{
  get { return _Number; }
  set { _Number = value; }
}

Note: The DefaultValue attribute is for setting the designer to bold or not. It doesn't actually set the default value.

link|improve this answer
You only need to apply the Browsable attribute with (false) if you want to HIDE a public property from the property inspector. – Strillo Aug 24 '11 at 15:36
@Strillo True, I removed it. – LarsTech Aug 24 '11 at 15:38
What about hiding a default property like BorderStyle or something? – Mark Aug 24 '11 at 15:40
@Mark Different question. You would have to override the property and add the Browsable(false) attribute yourself. – LarsTech Aug 24 '11 at 15:41
Ok sounds simple enough will accept this answer cause it was first – Mark Aug 24 '11 at 15:43
feedback

using System.ComponentModel;

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

and if you want the property under a category

[Category("My Properties")] 
public string MyCustomProperty{ get; set; }
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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