Declined
Last Updated: 26 Nov 2015 14:37 by ADMIN
If the IsEnabled property of a control placed inside the BusyIndicator is bound TwoWay and has NotifyPropertyChanged, in non debugging the property stays to False.
Declined
Last Updated: 05 Jan 2017 15:26 by ADMIN
RadBusyIndicator throw error when theme is Metro and is not set as an Application theme. Message=Cannot access Freezable 'System.Windows.Media.SolidColorBrush' across threads because it cannot be frozen.
Workaround:
Whenever you are running metro styled telerik components you must invoke:
MetroColors.PaletteInstance.Freeze();
So the shared color resources we bind our controls to could be frozen and become thread safe. The above line could be placed in the OnStartup in your example and it would work.