Hi Herme,
You can work this around by setting the SelectedColor in the Loaded event of the color picker control using a Dispatcher.
Please try this approach and let me know if it helps.
Regards,
Martin
Telerik
You can work this around by setting the SelectedColor in the Loaded event of the color picker control using a Dispatcher.
private void editor_Loaded(object sender, RoutedEventArgs e){ Dispatcher.BeginInvoke(new Action(() => { this.editor.SelectedColor = Colors.Red; }));}Regards,
Martin
Telerik
See What's Next in App Development. Register for TelerikNEXT.