WPF模糊边框

时间:2015-09-20 13:18:38

标签: c# wpf render

我已将进度条添加到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>

以下是它在编辑器中的外观

http://i.stack.imgur.com/ZNuMm.png

以下是运行后的看法

http://i.stack.imgur.com/AcX7D.png

1 个答案:

答案 0 :(得分:15)

您只需在堆叠面板中将SnapsToDevicePixels设置为true

  <StackPanel Width="570px" Height="70px" 
   HorizontalAlignment="Left" 
    Margin="10,0,0,0" SnapsToDevicePixels="True">

同时查看here