java swing中多个多边形上的鼠标事件

发布于 2024-11-14 04:06:15 字数 269 浏览 2 评论 0原文

我正在尝试为我的任务编写代码。 我的任务是,我通过给出坐标值在单个面板上绘制可能的多边形。并将鼠标移动事件应用于这些多边形。

我的问题是我可以绘制所有多边形,但不知道如何将 mousemoved 事件应用于所有多边形。(即,当我将鼠标移动到特定多边形时,该特定多边形的背景颜色应该改变,当我退出时它应该去回到正常阶段)。

我可以为一个或两个多边形手动完成所有这些操作。但在我的场景中,我会有很多多边形。我无法为每个人单独写。

所以请帮助我解决这个问题。

谢谢。

i am trying to write a code for my task.
my task is, i have draw may polygons on a single panel by giving coordinate values. and aplly mouse moved event to those polygons.

my problem is i can draw all polygons but don't know how to apply mousemoved event to all tha polygons.(i.e when i move my mouse to particular polygon the background color of that particual polygon should change, and when i exit it should go back to normal stage).

i can do all this manually for one or two polygons. but in my scenario i'll have so many polygons. i can't write individually for each.

so please help me regarding this issue.

thanks.

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

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

发布评论

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

评论(1

她说她爱他 2024-11-21 04:06:15

示例展示了如何解决一个多边形<的问题/代码>。请注意,mouseMoved() 仅记录当前鼠标Point。为了响应 repaint()paintComponent() 使用 contains() 进行检查。对于多个多边形,您只需迭代 List,依次检查每个多边形。

This example show how to solve the problem for one Polygon. Note that mouseMoved() merely records the current mouse Point. In response to repaint(), paintComponent() makes a check using contains(). For multiple polygons, you would simply iterate over a List<Polygon>, checking each in turn.

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