Java GUI,使用 JButton 创建钢琴键
我正在尝试使用 Java 创建一个简单的钢琴应用程序,但我一直在创建琴键。
所以我拥有的是(白色)JButtons 之上的一堆(黑色)JButtons,但是每当我单击白色按钮,它覆盖黑色按钮。
所以我的问题是;我该如何实现这一点,以便黑色 JButton 保持在白色 JButton 之上。
I'm trying to create a simple piano application using Java, and I'm stuck at creating the keys.
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定你一开始是如何布置按钮的。我建议您使用
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