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#?
| |||
|
feedback
|
|
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)
Note: The DefaultValue attribute is for setting the designer to bold or not. It doesn't actually set the default value. | |||||||||||
feedback
|
|
using System.ComponentModel;
and if you want the property under a category
| |||
|
feedback
|