hi
how can i set a style like office10s outlookbar, to the XamOutlook bar??
Hello jadugar,
If you want to set the office 2010 Blue theme for XamOutlookBar you will have to do the following steps :
1. Add the following xaml files in a folder called "CustomFolder" in your project
- Office2010Blue.xamDialogWindow.xaml
- Office2010Blue.xamMenu.xaml
- Office2010Blue.xamOutlookBar.xaml
2. Add ResourceDictionaries to App.xaml
<Application.Resources> <ResourceDictionary> <ResourceDictionary.MergedDictionaries> <ResourceDictionary Source="CustomFolder/Office2010Blue.xamOutlookBar.xaml"/> <ResourceDictionary Source="CustomFolder/Office2010Blue.xamMenu.xaml"/> <ResourceDictionary Source="CustomFolder/Office2010Blue.xamDialogWindow.xaml"/> </ResourceDictionary.MergedDictionaries> </ResourceDictionary> </Application.Resources>
When you start the application , you should have the theme applied . Hope that helps to you !
Regards , Nikola
Where can i find the 3 files below???