是否可以绘制一个Shape
由斜线构成的背景?
一个例子Rectangle
(对不起图像质量):
如果我想要虚线或更改线条属性(笔画,粗细..)?
您可以使用本文中的解决方案http://mark-dot-net.blogspot.com/2007/06/creating-hatched-patterned-brush-in-wpf.html
<VisualBrush
x:Key="HatchBrush"
TileMode="Tile" Viewport="0,0,10,10"
ViewportUnits="Absolute" Viewbox="0,0,10,10"
ViewboxUnits="Absolute">
<VisualBrush.Visual>
<Canvas>
<Rectangle Fill="Azure" Width="10" Height="10" />
<Path Stroke="Purple" Data="M 0 0 l 10 10" />
</Canvas>
</VisualBrush.Visual>
</VisualBrush>
只需更改参数等以适合您的应用程序
用法:
<Rectangle Width="80" Height="40"
Fill="{StaticResource HatchBrush}"/>