我正在使用我在网上找到的箭头控件:
http://blogs.microsoft.co.il/blogs/tomershamam/archive/2008/01/23/wpf-arrow-and-custom-shape.aspx
我试图将其更改为关闭的箭头,如下图所示。
有人可以提供建议/帮助吗? 我用 InternalDrawArrowGeometry 方法了解它。
答案 0 :(得分:1)
Dammm ..我做到了。
最后添加了两行:
context.LineTo(pt3, true, true);
context.LineTo(pt2, true, true);
并设置箭头的FILL属性。
:)