好吧,现在我有一个包含 JLayeredPane 的 JFrame。所以它现在运行一个游戏 GUI。我想在这个框架的一侧添加按钮,以便我可以通过按钮接收用户的输入。有任何想法吗?
class mapGUI extends JFrame{
layeredPane = new JLayeredPane();
mapSize = new Dimension(mapColumn * 16 , mapRow * 16);
layeredPane.setPreferredSize(mapSize);
//Adding the layeredPane to the frame.
getContentPane().add(layeredPane);
//Adds the appropriate labels to the panels and adds them to the layeredPane.
addPlayerPos();
addDungeonItems();
addDungeonFloor();
setDefaultCloseOperation(EXIT_ON_CLOSE);
setResizable(false);
pack();
setLocationRelativeTo(null);
setVisible(true);
}
这是我创建 JFrame 并将 JLayeredPane 添加到其中的代码部分。