可以移动图标吗?

发布于 2024-10-07 22:02:22 字数 61 浏览 2 评论 0原文

在Java中,是否可以使用paintIcon将图标放入画布中,然后使用键盘事件移动该图标,就像游戏角色一样?

In Java, is it possible to use paintIcon to put an icon into a canvas, and then move that icon around using keyboard events like you would a game character?

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

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

发布评论

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

评论(2

吲‖鸣 2024-10-14 22:02:22

一旦你在画布上画了一些东西,它就会留在那里,而那个位置下面的东西就会丢失。要“移动”图标,您需要重新绘制画布(或至少重新绘制图标原来所在位置的画布)并在新位置绘制图标。

Once you paint something on the canvas, it stays there, and what was there beneath that location is lost. To "move" the icon, you need to repaint the canvas (or at least what was originally at the location of the icon) and draw the icon at its new position.

抚你发端 2024-10-14 22:02:22

通过注册按键侦听器,这可以更好地与小程序配合使用。
并重写paint方法

This would work better with an applet by registering keylisteners.
and overridding the paint method

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