0

我已经发布了有关此的消息,但是我丢失了它!我现在也可以粘贴代码了...

我有一个 RibbonRadioButton,其图像正在被拉伸,下面是 XAML(我没有更改默认的代码隐藏)。我检查了 PNG 是 96dpi,但问题仍然存在。

XAML:

<Window x:Class="DashboardTest.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:ribbon="clr-namespace:Microsoft.Windows.Controls.Ribbon;assembly=RibbonControlsLibrary"
        Title="MainWindow" Height="350" Width="525">
    <Grid>
        <ribbon:Ribbon x:Name="Ribbon">
            <ribbon:RibbonGroup x:Name="LiveStatusGroup"
                                    Header="RibbonGroup Header">
                <ribbon:RibbonRadioButton x:Name="Dashboard"
                                              LargeImageSource="images\LiveStatus_Dashboard.png"
                                              HorizontalContentAlignment="Center"
                                              HorizontalAlignment="Center"
                                              VerticalContentAlignment="Center"
                                              VerticalAlignment="Center"
                                              Label="RibbonRadioButton Label"
                                              ToolTip="RibbonRadioButton ToolTip"/>
            </ribbon:RibbonGroup>
        </ribbon:Ribbon>
    </Grid>
</Window>

任何人都可以阐明为什么会这样吗?我正在运行 Windows 7,文本大小设置为中等 (125%)。

Ĵ

4

0 回答 0