I need to bind 2 way a the colorpicker palette selected color with an usersetting. I'm working in .net core 3.1.
In xaml I added :
<syncfusion:ColorPickerPalette x:Name="ClrPcker_Background"
SelectedBrush="{Binding Source={x:Static p:MySettings.Default},
Path=myBackColor , Mode=TwoWay}"
syncfusionskin:SfSkinManager.VisualStyle="Office2019Black"
Margin="878,217,273,424" />
and I define myBackground in my.setting, but if I correctly understand SelectedBrush is a system.windows.media item, that I was unable to set as type for myBackground( that I declared as system.drawing.color), is there a way to solve in XAML?