Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1930
Styling OutlookBar
posted

hi

how can i set a style like office10s outlookbar, to the XamOutlook bar??

Parents
No Data
Reply
  • 1670
    posted

    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
Children