WPF模糊边框
WPF Blurry borders
我在 WPF 项目的工作区中添加了一个进度条。我已经设置了 BorderBrush 颜色和背景颜色。在编辑器视图中一切正常。但是当我尝试 运行 我的应用程序时,边框变得模糊,我真的不知道为什么。
以下是包含进度条的 StackPanel 代码:
<StackPanel Width="570px" Height="70px" HorizontalAlignment="Left" Margin="10,0,0,0">
<ProgressBar Name="DownloadProgress" Width="570px" Height="30px"
Opacity="1" Background="#434551" BorderBrush="#2C2C38" BorderThickness="1"
VerticalAlignment="Top" HorizontalAlignment="Left"/>
<Label Name="Status" Content="Updated to version 0.0.1567" Foreground="#6B7E7F"
Margin="0,5,0,0" HorizontalAlignment="Right" VerticalAlignment="Bottom">
</Label>
</StackPanel>
这是它在编辑器中的样子:
这是 运行 之后的样子:
您只需在堆栈面板中将 SnapsToDevicePixels 设置为 true
。
<StackPanel Width="570px" Height="70px"
HorizontalAlignment="Left"
Margin="10,0,0,0" SnapsToDevicePixels="True">
也看看here
我在 WPF 项目的工作区中添加了一个进度条。我已经设置了 BorderBrush 颜色和背景颜色。在编辑器视图中一切正常。但是当我尝试 运行 我的应用程序时,边框变得模糊,我真的不知道为什么。
以下是包含进度条的 StackPanel 代码:
<StackPanel Width="570px" Height="70px" HorizontalAlignment="Left" Margin="10,0,0,0">
<ProgressBar Name="DownloadProgress" Width="570px" Height="30px"
Opacity="1" Background="#434551" BorderBrush="#2C2C38" BorderThickness="1"
VerticalAlignment="Top" HorizontalAlignment="Left"/>
<Label Name="Status" Content="Updated to version 0.0.1567" Foreground="#6B7E7F"
Margin="0,5,0,0" HorizontalAlignment="Right" VerticalAlignment="Bottom">
</Label>
</StackPanel>
这是它在编辑器中的样子:
这是 运行 之后的样子:
您只需在堆栈面板中将 SnapsToDevicePixels 设置为 true
。
<StackPanel Width="570px" Height="70px"
HorizontalAlignment="Left"
Margin="10,0,0,0" SnapsToDevicePixels="True">
也看看here