gpt4 book ai didi

c# - 右侧模糊的 WPF 列表框边框

转载 作者:行者123 更新时间:2023-11-30 16:02:23 25 4
gpt4 key购买 nike

我有一个带有显示一些数据的列表框的 WPF 应用程序。当我在窗口中央有列表框并且窗口宽度不均匀时,右侧的列表框是模糊的。 (绿色为矩形,蓝色部分为文本框) the (green) listbox has a blurry right side我几乎在所有地方都尝试应用 SnapsToDevicePixels 但没有结果。 (我知道它应该被子元素继承,但我差点把头发拔出来)

我可以通过将它设置为 Horizo​​ntalAlignment="Left" 并始终保持固定大小来克服这个问题,但我知道我只是遗漏了一些东西,因为文本框确实呈现正确.

这是我的(尽可能干净的)代码,显示了行为:

<Window x:Class="WpfApplication2.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Window1"
Height="200"
Width="401px"
Background="Red"
SnapsToDevicePixels="True">
<Grid>
<Rectangle Width="200" Height="50" Fill="Blue" VerticalAlignment="Top" />
<ListBox Height="94" VerticalAlignment="Bottom" Width="200px" >
<ListBoxItem>1</ListBoxItem>
<ListBox.Template>
<ControlTemplate TargetType="ListBox">
<ScrollViewer Margin="0" Padding="0" SnapsToDevicePixels="True">
<StackPanel Margin="0" IsItemsHost="True" Width="200" Background="GreenYellow"/>
</ScrollViewer>
</ControlTemplate>
</ListBox.Template>
<ListBox.ItemContainerStyle>
<Style TargetType="{x:Type ListBoxItem}">
<Setter Property="SnapsToDevicePixels" Value="True"/>
<Setter Property="Width" Value="200"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="ListBoxItem">
<Grid Background="Green" Height="40" SnapsToDevicePixels="True">
<ContentPresenter SnapsToDevicePixels="True"/>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</ListBox.ItemContainerStyle>
</ListBox>
</Grid>
</Window>

最佳答案

Window 上设置 UseLayoutRounding="True"

我还建议设置 TextOptions.TextFormattingMode="Display" 以提高文本清晰度。

关于c# - 右侧模糊的 WPF 列表框边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37708403/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com