Thank you for your patience.
The solution as of now is to use a solid brush color.
I have attached a script which will hold its color.
[XmlIgnore()] [Display(Name = "FillBrush", GroupName = "NinjaScriptParameters", Order = 1)] public SolidColorBrush FillBrush { get; set; } [Browsable(false)] public string FillBrushSerialize { get { return Serialize.BrushToString(FillBrush); } set { FillBrush = (SolidColorBrush)Serialize.StringToBrush(value); } }
Leave a comment: