Ninja doesn't like: "RectangleColor = Colors.Blue;"
[XmlIgnore]
public System.Windows.Media.Brush RectangleColor { get; set; }
[Display(Name="RectangleColor", Order=1, GroupName="Parameters")]
[Browsable(false)]
public string BrushSerialize
{
get { return Serialize.BrushToString(RectangleColor); }
set { RectangleColor = Serialize.StringToBrush(value); }
}
Also in the parameters the color picker shows under a "Misc" GroupName and not "Parameters" even though I specified a "GroupName="Parameters")]"
Ninja 8.0 colors are going to be the death of me of me yet I just know it.
Cheers

Comment