在 WPF 中,您可以命中 PathFigure 的片段吗?
我正在制作一个控件,涉及拖动显示元素的各个部分。 由于它的一部分是圆弧,因此我必须使用 PathFigure,以便可以使用 ArcSegments。 我希望能够知道鼠标是否位于图形的特定部分上,但我没有看到明显的方法来做到这一点。 这是不可能的还是我错过了什么?
I'm making a control that involves dragging pieces of a displayed element around. Since part of it is an arc, I have to use a PathFigure so I can use ArcSegments. I'd like to be able to know if the mouse is over a particular segment of the figure, but I don't see an obvious way to do this. Is it impossible or am I missing something?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根 Path 对象具有鼠标的正常 UI 事件,而不是一个具有大量弧的路径,您将需要大量每个都带有弧的路径。
the root Path object has the normal UI events for Mouse, instead of one Path with lots of Arcs you will need lots of Paths with an arc in each.