像大多数人一样,我正在为我MenuItem
的 s 使用图标。我希望所有这些图像都显示为 16x16 像素的图标。大多数源图像都具有这种格式,有些可能是 32x32,但它们都略微缩放(到 18x18 左右)。
我已经尝试过了,但它不会影响图标(如果这是可怕的编码,请通知我。我是 xaml 的新手。):
<Style TargetType="MenuItem">
<Setter Property="Padding" Value="6,3" />
<Setter Property="Height" Value="22" />
<Setter Property="ItemContainerStyle">
<Setter.Value>
<Style TargetType="Image">
<Setter Property="Height" Value="16" />
<Setter Property="Width" Value="16" />
</Style>
</Setter.Value>
</Setter>
</Style>