Path 中加号的 Data 值是多少
如何使用 Path 对象中的 data 属性绘制加号和减号。
这是我的三角形路径对象。我需要将其更改为加号。
<Path x:Name="trianglePath" Data="M 0 8 H 12 V 15 Z"/>
How to draw plus and minus signs in using data property in Path object.
This is my triangle path object. I need to change it to plus symbol.
<Path x:Name="trianglePath" Data="M 0 8 H 12 V 15 Z"/>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在这里,我使用 XAML 路径标记语法创建了一个 10 x 10 像素的加号和减号:
当尝试设计路径绘图时,设置路径元素的高度和宽度会很有帮助。宽度优先。要更好地了解 XAML 路径标记语法,请参阅 MSDN< /a>.
Here, I've created a plus and minus sign which is 10 x 10 pixels using XAML path markup syntax:
When experimenting with designing your path drawing, it's helpful to set the path element's height & width first. To better understand XAML path markup syntax, see MSDN.
如果将它们绘制在一张方格纸上,然后用从前一个顶点到达该顶点所需的值来标记顶点,您可能会发现更容易。
然后将其复制到您的代码中。
You might find it easier if you draw them out on a piece of graph paper and then label the vertices with the values needed to reach it from the previous one.
Then copy this into your code.