1

我正在使用我在网上找到的箭头控件:

http://blogs.microsoft.co.il/blogs/tomershamam/archive/2008/01/23/wpf-arrow-and-custom-shape.aspx

我试图将其更改为闭合箭头,如下图所示,但未成功。

在此处输入图像描述

任何人都可以提供建议/帮助吗?我知道它与InternalDrawArrowGeometry方法有关。

4

1 回答 1

1

Dammm .. 我做到了。

最后只添加了两行:

  context.LineTo(pt3, true, true);
  context.LineTo(pt2, true, true);

并设置箭头的 FILL 属性。

:)

于 2011-12-19T16:03:42.127 回答