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
45
Changing the font size of the header in xamOutlookbar
posted

I'd like to have the header of each group show in 11 points, but I would like the title of the group that appears at the top of the xamOutlookbar to appear in 16 points.  I'm having trouble figuring out how to do this.  Any ideas?

Parents
No Data
Reply
  • 54937
    Verified Answer
    Offline posted

    The element at the top of the outlookbar is the SelectedGroupHeader so you could put a style that targets that into the Resources of the xamOutlookBar. Note: if you put it up higher and set the Theme it won't end up affecting it because the Theme will provide a local style for that element.

            <igOutlookBar:XamOutlookBar>
                <igOutlookBar:XamOutlookBar.Resources>
                    <Style TargetType="{x:Type igOutlookBar:SelectedGroupHeader}">
                        <Setter Property="FontSize" Value="16" />
                    </Style>
                </igOutlookBar:XamOutlookBar.Resources>

     

Children