I am trying to follow the instructions from: http://docs.telerik.com/devtools/wpf/styling-and-appearance/styling-apperance-implicit-styles-overview.html#applying-theme-globally-in-your-application From the picture below you can see that it definitely is in my list of References. I apologize if this is a stupid question as I am fairly new to WPF (WinForms was my thing).
http://i.stack.imgur.com/fBtbQ.png
I included a Theme's Folder and put the XAML files into that. I am able to reference them with out error but it does not seem to want to apply the theme to my button type:
<ResourceDictionary Source="/Themes/System.Windows.xaml"/>
<ResourceDictionary Source="/Themes/Telerik.Windows.Controls.xaml"/>
As you can see in the picture I have tried using the dll files as references but it doesn't they they are referenced.
<ResourceDictionary Source="/Telerik.Windows.Themes.Green;component/Themes/System.Windows.xaml"/>
<ResourceDictionary Source="/Telerik.Windows.Themes.Green;component/Themes/Telerik.Windows.Controls.xaml"/>
<ResourceDictionary Source="/Telerik.Windows.Themes.Green;component/Themes/Telerik.Windows.Controls.Navigation.xaml"/>
<ResourceDictionary Source="/Telerik.Windows.Themes.Green;component/Themes/Telerik.Windows.Controls.Docking.xaml"/>
Anyone able to tell me why it is not able to use the Theme Green dll Reference?