I have indicator ported from NT7 to NT8 which uses array of objects.
I does not work NT8. Array is showing but there is no edit button to add or remove elements
Here's the simple example
public class MyCustomIndicator : Indicator
{
[TypeConverter(typeof (ExpandableObjectConverter))]
public class TimeRange
{
public TimeSpan Begin { get; set; }
public TimeSpan End { get; set; }
}
//How to edit this collection in property grid?
public TimeRange[] TimeRanges { get; set; }

Comment