Java GUI,使用 JButton 创建钢琴键

发布于 2024-12-25 22:59:03 字数 235 浏览 3 评论 0原文

我正在尝试使用 Java 创建一个简单的钢琴应用程序,但我一直在创建琴键。

Awesome

所以我拥有的是(白色)JButtons 之上的一堆(黑色)JButtons,但是每当我单击白色按钮,它覆盖黑色按钮。

所以我的问题是;我该如何实现这一点,以便黑色 JButton 保持在白色 JButton 之上。

I'm trying to create a simple piano application using Java, and I'm stuck at creating the keys.

Awesome

So what I have is a bunch of (Black) JButtons on top of (White) JButtons, but whenever I click the white buttons, it covers the black buttons.

So my question is; how do I implement this so the black JButtons would stay on top of the white ones.

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

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

发布评论

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

评论(1

痴者 2025-01-01 22:59:03

我不确定你一开始是如何布置按钮的。我建议您使用 JLayeredPane 进行布局。使用它,您可以指定每个组件的 z-index - 它会处理其余的事情。看看这里: http://docs.oracle.com/ javase/tutorial/uiswing/components/layeredpane.html#深度

I'm not sure how you're laying out your buttons in the first place. I suggest you use JLayeredPane for the layout. With it, you specify z-index of each component - and it takes care of the rest. Have a look here: http://docs.oracle.com/javase/tutorial/uiswing/components/layeredpane.html#depth

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