I have this properties with default value. Can anyone help me on how to have a drop down menu for choices on values?. I want the values on the drop down only appears 1-10 only...
private int _margin = 10;
[Bindable(true), Category(_category), DefaultValue(10)]
public int MarginWidth
{
get { return _margin; }
set { _margin = Math.Abs(value); Invalidate(); }
}

Anyway, how do you call this [Bindable(true), Category(_category), DefaultValue(10)]
just a key for google searching for reference?