
I'm trying to match the Office2010 look and feel out of the box, but when I create a ribbon text seems somewhat smaller. For example:
For reference, here is a sample:Side by side with an Office 2010 product (Access), it looks like this (I didn't bother putting icons in, but you can still see the difference in text).
Is there a setting or property I can change to make my ribbon match Office's text size out of the box?
Thank you,
Mick
- Tab labels
- Group labels
- Button labels
For reference, here is a sample:
<Window
    x:Class="RibbonSamples.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:ribbon="http://schemas.actiprosoftware.com/winfx/xaml/ribbon"
    xmlns:themes="http://schemas.actiprosoftware.com/winfx/xaml/themes"
    Title="MainWindow"
    Height="350"
    Width="525"
    >
    <Grid themes:ThemeManager.Theme="Office2010Silver">
        <ribbon:Ribbon>
            <ribbon:Tab Label="Home" />
            <ribbon:Tab Label="Create">
                <ribbon:Group Label="Templates">
                    <ribbon:PopupButton Label="Application Parts" />
                </ribbon:Group>
                <ribbon:Group Label="Templates">
                    <ribbon:Button Label="Table" />
                    <ribbon:Button Label="Table Design" />
                    <ribbon:PopupButton Label="SharePoint Lists" />
                </ribbon:Group>
            </ribbon:Tab>
            <ribbon:Tab Label="External Data" />
        </ribbon:Ribbon>
    </Grid>
</Window>
Is there a setting or property I can change to make my ribbon match Office's text size out of the box?
Thank you,
Mick
