When using the PropertyGrid control in ironpython, how to use the CategoryAttribute feature to classify and display properties in the PropertyGrid control?
I know how to do it in C#,using Attribute label:
[Browsable(true), Category("Category"),Description("just a test")]
public int Prop
{
get { return _prop; }
set { this._prop = value; }
}
but how to do it in Ironpython? Looking forward to your reply
When using the PropertyGrid control in ironpython, how to use the CategoryAttribute feature to classify and display properties in the PropertyGrid control?
I know how to do it in C#,using Attribute label:
[Browsable(true), Category("Category"),Description("just a test")]
public int Prop
{
get { return _prop; }
set { this._prop = value; }
}
but how to do it in Ironpython? Looking forward to your reply