仅使用 XAML 绘制纯色三角形

发布于 2024-12-11 08:03:29 字数 491 浏览 0 评论 0 原文

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

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

在此处输入图像描述

编辑:解决方案,感谢 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" />

Is it possible to draw a filled in triangle using XAML only (not a code behind solution)?

Triangle should be like on the image below to represent sort direction Ascending/Descending along with a sort button on a chart control:

enter image description here

EDIT: The solution, thanks to SpeziFish:

Ascending:

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

Descending:

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

岁月蹉跎了容颜 2024-12-18 08:03:29
<Polygon Points="0,0 80,50, 0,100" Stroke="Black" Fill="Black" />

请参阅 API示例

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

See API or Example.

爱*していゐ 2024-12-18 08:03:29

我想将这些添加到他们的集合中:

在此处输入图像描述

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

在此处输入图像描述

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

I want to add these to their collection:

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" />
铃予 2024-12-18 08:03:29

使用路径

<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 "/>

Using paths

<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 "/>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文