我想要一个 JPanel,底部有一个 Java 2d 图形部分和一个 JComponent 部分
这是一款塔防游戏,我希望顶部是在 300x200 面板中绘制的地图和对象,底部是带有多个 JButton 和 JLabels 的 300x100 面板。我该怎么做呢。我已经使用 swing 很长时间了,只是不知道如何将 Graphics 部分与其他组件分开。
This is for a tower defense game and i want the top section to be the map and objects drawn in 300x200 panel and the bottom be a 300x100 panel with multiple JButtons and JLabels. How would I do this. I have used swing for a long time I just don't know exactly how to separate the Graphics part from the other components.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议在主 JPanel 中放置 2 个 JPanel。顶部一个用于地图和对象,底部一个包含 JButton 和 JLabels。
只需记住为主 JPanel 设置适当的 LayoutManager 即可。
I would suggest putting 2 JPanels inside your main JPanel. The top one would be for the map and objects, and the bottom one would contain your JButtons and JLabels.
Just remember to set an appropriate LayoutManager for the main JPanel.