如何将鼠标单击事件的坐标记住到列表中?

发布于 2024-10-25 22:17:31 字数 95 浏览 0 评论 0原文

我需要它来使用扫描线算法对多边形填充进行编程。

但我仍然不知道如何获取鼠标单击的坐标并将其保存在列表中,然后获取下一个点并执行相同的操作,我不知道需要执行多少次

I need that to program polygon-fill with Scanline algorithm.

but how i still don't know how to get coordinates of mouseclick and save this in list then get next point and do the same and i don't know how many times i will need to do that

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

七七 2024-11-01 22:17:31

捕获 MouseUp 事件而不是 Click 事件。 MouseUp 事件有一个 MouseEventArgs,其中包含 XY 坐标。

Capture the MouseUp event instead of the Click event. MouseUp event has a MouseEventArgs that contains the X, Y coordinates.

烟酒忠诚 2024-11-01 22:17:31

在 MouseClick 事件处理程序中,MouseEventArgs 包含鼠标光标的 x 和 y 坐标。坐标与控制相关。

In MouseClick event handler MouseEventArgs contain x and y coordinates of mouse cursor. Coordinates are control related.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文