11

我有一个 TabControl。每个 TabItem 的标题都包含一个带有图标和标签的 StackPanel。

<TabControl>
  <TabItem>
    <TabItem.Header>
      <StackPanel Orientation="Horizontal">
        <Image Source="/LoginPanel;component/Icons/icoLogin.ico"</Image>
        <Label VerticalContentAlignment="Center">Login</Label>
        </StackPanel>
      </TabItem.Header>
    </TabItem.Header>
    <!--some further code here-->
  <TabItem>
  <!--some further code here-->
<TabControl>

每个未选中的 TabItem 中的每个图标都按预期显示。当前选中的 TabItem 中的 Icon 有点模糊。如果我切换到另一个选项卡,取消选择的选项卡图标变得清晰;新选择的图标变得多云。

我已经尝试了以下方法来解决这个问题:

SnapsToDevicePixels="True"

但什么也没发生

或者

Width="32" Height="32"

或者

Stretch="None"

以防止缩放。这一切都没有任何影响。有人可以给我一个提示吗?提前致谢

4

2 回答 2

14

这对我有用:

<Image Source="/LoginPanel;component/Icons/icoLogin.ico"
       RenderOptions.BitmapScalingMode="NearestNeighbor"</Image>
于 2011-03-23T05:27:02.453 回答
10

考虑将“RenderOptions.EdgeMode”也设置为“Aliased”。

<Image Source="/LoginPanel;component/Icons/icoLogin.ico"
       RenderOptions.BitmapScalingMode="NearestNeighbor"
       RenderOptions.EdgeMode="Aliased"/> 

请参阅WPF 中的图像在SO 上变得模糊。

于 2011-05-03T05:26:40.933 回答