Is there anyone use custom category name for property?
I like to categorize parameters with groups.
[Category("Filters")]
It shows in Optimizer Parameters DilogBox but not in Chart Strategy Property paramters dialogBox.
Any undocumented attribute to specify?
This is how I implemented:
///<summary>
///</summary>
[XmlIgnore()]
[Description("Filter 1")]
[Category("Filters")]
[Gui.Design.DisplayNameAttribute("Filter 1")]
publicbool Filter1
{
get{ return filter1; }
set{ filter1 = value;}
}
In case anyone thing why I need to do this: (I've more than 10 paramters in a strategy and I would like to group them!)
Thank you in advance.
Sam

Comment