XAML 几何属性中的字母叫什么?
我正在定义一个 XAML DrawingBrush
资源,并且想要绘制自定义形状。 我发现了以下 GeometryDrawing
示例:
<GeometryDrawing Geometry="M0,0.1 L0.1,0 1,0.9, 0.9,1z" Brush="Gray" />
中的
属性是什么意思? 他们叫什么?M
、L
和 z
字母有何作用Geometry
I am defining a XAML DrawingBrush
resource and I want to draw a custom shape. I found the following GeometryDrawing
example:
<GeometryDrawing Geometry="M0,0.1 L0.1,0 1,0.9, 0.9,1z" Brush="Gray" />
What do the M
, L
, and z
letters in the Geometry
attribute mean? What are they called?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个 StreamGeometry。 它使用名为路径标记语法的内容。 M 是起点,L 是一条线的起点,Z 是闭合点。
This is a StreamGeometry. It uses something called Path Markup Syntax. M is start point, L starts a line, Z is close.