1

我正在尝试使用 WPF 使用DrawingBrush.

我在 MSDN 上找到了以下示例,它非常接近我想要的,但不完全是。我想做的就是纯XAML。我对 WPF 相当陌生。

 <DrawingBrush x:Key="GridTile" 
                  Viewport="0,0,10,10" 
          ViewportUnits="Absolute"
          TileMode="Tile">
        <DrawingBrush.Drawing>
            <DrawingGroup>
                <GeometryDrawing Geometry="M0,0 L1,0 1,0.1, 0,0.1Z" Brush="Blue" />
                <GeometryDrawing Geometry="M0,0 L0,1 0.1,1, 0.1,0Z" Brush="Red" />
            </DrawingGroup>
        </DrawingBrush.Drawing>
    </DrawingBrush>

目前这会产生

在此处输入图像描述

我要生成

宽3cm,每行4mm

在此处输入图像描述

我将使用这个瓷砖作为我的背景,或者更确切地说,DrawingBrush TileMode它会为我处理。

4

1 回答 1

3

更改 的大小,Brush使Viewport高度大于宽度,并Geometry相应地更改 ,使线条仍然显得1px粗。

<Window x:Class="WPFTest.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="WPF" SizeToContent="WidthAndHeight">

    <Window.Resources>
        <DrawingBrush x:Key="GridTile" Viewport="0,0,4,16" 
                      ViewportUnits="Absolute" TileMode="Tile">
            <DrawingBrush.Drawing>
                <DrawingGroup>
                    <GeometryDrawing Geometry="M0,0 L1,0 1,0.05 0,0.05Z" Brush="Black"/>
                    <GeometryDrawing Geometry="M0,0 L0,1 0.1,1 0.1,0Z" Brush="Black"/>
                </DrawingGroup>
            </DrawingBrush.Drawing>
        </DrawingBrush>
    </Window.Resources>

    <Rectangle Height="512" Width="512" Stroke="Black" StrokeThickness="0"
               Fill="{StaticResource GridTile}"/>
</Window>

在此处输入图像描述

于 2015-07-16T02:26:02.430 回答