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.
我有一条现有的折线。如何在其上添加控制点?换句话说,我需要在我用鼠标单击的 LineSegment 上添加一个控制点。我使用 WPF。
有谁能够帮我?
我不明白你的问题,但我会试一试:)你是什么意思“控制点”?只是添加新点?如果是这样,您只需将此方法注册到窗口“MouseDown”事件:
void Window1_MouseDown(object sender, MouseButtonEventArgs e) { Point mousePosition = (Point)e.MouseDevice.GetPosition(this); myPolyline.Points.Add(mousePosition); }