I am using Implicit Themes in my WPF app, like so:
It doesn't seem to be applying to User Controls that I create, do I need to do something different? I noticed here -->Implicit Styles that it references using the "Themes.Implicit" folder...
I did what I have shown above and added a reference to "Telerik.Windows.Themes.Windows8", the No Xaml version.
<Application x:Class="Green.App" xmlns:local="clr-namespace:Green"> <Application.Resources> <ResourceDictionary> <ResourceDictionary.MergedDictionaries> <ResourceDictionary> <local:AppBootstrapper x:Key="bootstrapper" /> </ResourceDictionary> <ResourceDictionary Source="/Telerik.Windows.Themes.Windows8;component/Themes/System.Windows.xaml"/> <ResourceDictionary Source="/Telerik.Windows.Themes.Windows8;component/Themes/Telerik.Windows.Controls.xaml"/> <ResourceDictionary Source="/Telerik.Windows.Themes.Windows8;component/Themes/Telerik.Windows.Controls.Input.xaml"/> <ResourceDictionary Source="/Telerik.Windows.Themes.Windows8;component/Themes/Telerik.Windows.Controls.Navigation.xaml"/> </ResourceDictionary.MergedDictionaries> </ResourceDictionary> </Application.Resources></Application>It doesn't seem to be applying to User Controls that I create, do I need to do something different? I noticed here -->Implicit Styles that it references using the "Themes.Implicit" folder...
I did what I have shown above and added a reference to "Telerik.Windows.Themes.Windows8", the No Xaml version.