Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个图形程序。我想知道将注意力集中在绘制的贝塞尔曲线上的最佳方法是什么。到目前为止,我已经实现了椭圆和矩形,并且很容易聚焦/选择它们(您只需要在其中单击)。将它添加到绘制曲线的最佳方法是什么?一旦选择了这条曲线,我想让 4 个矩形出现在贝塞尔曲线附近,但我不确定如何检测这条曲线的选择。
如果您使用 System.Windows.Shapes.Path() 绘制贝塞尔曲线,您可以使用标准 UI 事件,例如
myPath.MouseEnter += new MouseEventHandler(myPath_MouseEnter);
等等