仅使用XAML绘制纯色三角形

时间:2011-10-24 11:21:00

标签: .net wpf xaml draw

是否可以仅使用XAML绘制填充三角形(不是解决方案背后的代码)?

三角形应该如下图所示,以表示排序方向Ascending/Descending以及图表控件上的排序按钮:

enter image description here

编辑:解决方案,感谢SpeziFish

升序:

<Polygon Points="0,0 8,5, 0,10" Stroke="Black" Fill="Black" />

降序:

<Polygon Points="8,0 0,5, 8,10" Stroke="Black" Fill="Black" />

3 个答案:

答案 0 :(得分:90)

<Polygon Points="0,0 80,50, 0,100" Stroke="Black" Fill="Black" />

请参阅APIExample

答案 1 :(得分:29)

我想将这些添加到他们的收藏中:

enter image description here

    <Polygon Points="5,0 10,10, 0,10" Stroke="Black" Fill="Black" />

enter image description here

    <Polygon Points="0,0 5,10, 10,0" Stroke="Black" Fill="Black" />

答案 2 :(得分:23)

使用路径

<Path Width="33" Height="37" Stretch="Fill" Stroke="Black" Fill="Black" Data="F1 M 319.344,237.333L 287.328,218.849L 287.328,255.818L 319.344,237.333 Z "/>
<Path Width="33" Height="37" Stretch="Fill" Stroke="Black" Fill="Black" Data="F1 M 287.328,237.333L 319.344,255.818L 319.344,218.849L 287.328,237.333 Z "/>