SelectedColor binding doesn't update from ColorPicker to Model
I have a WPF application where I need to allow to change appearance (backgrounds and foreground mostly). So i bind them to dynamic resources which defined application-wide in App.resources . I also decided to use a ColorPicker from wpftoolkit (v2.5.0) in my Settings window simplified example App.xaml <Application x:Class="WpfColors.App" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" StartupUri="MainWindow.xaml"> <Application.Resources> <SolidColorBrush x:Key="BgBrush" Color="Gray"/> </Application.Resources> </Application