WPF一个像素宽的线有时会消失

时间:2015-03-28 17:40:28

标签: c# wpf

我试图制作一个在其中心绘制红叉的控件。我希望十字形是一个像素宽,我想禁用抗锯齿并使其与屏幕的像素对齐。

控件有效,但是如果我将它添加到具有分割器的网格中,当我拖动分割器时,其中一条线有时会消失。如果我把它放在带有水平分割器的网格中,水平线有时会消失,如果我把它放在带有垂直分割器的网格内,垂直线有时会消失。

如何阻止线条消失?

这是xaml代码:

<Window x:Class="WpfTest.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:local="clr-namespace:WpfTest"
        Title="MainWindow" Height="600" Width="800">
    <Window.Resources>
        <local:HalfValueConverter x:Key="halfConv" />

        <Style TargetType="Line">
            <Setter Property="Stroke" Value="Red"/>
            <Setter Property="StrokeThickness" Value="1"/>
            <Setter Property="RenderOptions.EdgeMode" Value="Aliased"/>
            <Setter Property="SnapsToDevicePixels" Value="True" />
        </Style>
    </Window.Resources>
    <Grid>
        <Grid.RowDefinitions>
            <RowDefinition Height="*"/>
            <RowDefinition Height="Auto"/>
            <RowDefinition Height="*"/>
        </Grid.RowDefinitions>
        <Grid Grid.Row="2" Background="Black" Name="grdParent">
            <Line X1="{Binding ActualWidth, ElementName=grdParent, Converter={StaticResource halfConv}}"
              Y1="0" 
              X2="{Binding ActualWidth, ElementName=grdParent, Converter={StaticResource halfConv}}"
              Y2="{Binding ActualHeight, RelativeSource={x:Static RelativeSource.Self}}"
              Height="100"
              />
            <Line X1="0" 
              Y1="{Binding ActualHeight, ElementName=grdParent, Converter={StaticResource halfConv}}"
              X2="{Binding ActualWidth, RelativeSource={x:Static RelativeSource.Self}}"
              Y2="{Binding ActualHeight, ElementName=grdParent, Converter={StaticResource halfConv}}"
              Width="100"
              />
        </Grid>
        <GridSplitter Grid.Row="1" Height="5" HorizontalAlignment="Stretch" Background="Gray" ResizeBehavior="PreviousAndNext" ResizeDirection="Rows" />
    </Grid>
</Window>

这是HalfValueConverter的代码:

using System;
using System.Windows.Data;

namespace WpfTest
{
    public class HalfValueConverter : IValueConverter
    {
        public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
        {
            return ((double)value / 2);
        }

        public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
        {
            return ((double)value * 2);
        }
    }
}

这是将分割器拖动到正确位置时的外观:

Line gone

这就是它的外观:

Line visible

1 个答案:

答案 0 :(得分:3)

为了阻止线条消失,除了UseLayoutRounding="True"之外,我还需要使用SnapsToDevicePixels