所以,我一直致力于Java Memory / Concentration Game的分配。我没有达到我想要的程度,它只完成了一半,但我确实有GUI工作......直到我试图在我的Frame上添加单选按钮。我认为问题可能是因为我将JFrame(CardButtonPanelFrame)更改为JPanel。我正在尝试将3个JPanel添加到更大的JPanel中,我将其添加到JFrame中。当我以前弹出所有52张卡片时,我只是弹出一个小小的空白窗口。
基本上,当我从事项目工作时,事情可能会失控,因此我认为我会来这里确保自己朝着正确的方向前进。
这是我的主要内容:
import javax.swing.*;
public class Project3{
public static void main(String[] args){
JFrame frame = new JFrame();
Grid game = new Grid();
frame.pack();
frame.add(game);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
}
}
然后这是最外面的JPanel我想把收音机按钮放在顶部,卡片放在中间,最后得分在底部。
import java.awt.*;
import javax.swing.*;
public class Grid extends JPanel{
public Grid(){
JPanel panel = new JPanel(); //construct a frame
CardButtonPanelFrame buttons = new CardButtonPanelFrame();
wtf choices = new wtf();
panel.setLayout(new GridLayout(3,1)); //that panel uses GridLayout
panel.add(choices);//add the panels to the Frame
panel.add(buttons);
//frame.add(scores);
add(panel);
setVisible(true);
}
}
这是radiobuttons面板......名为wtf,因为我有一些编译问题,并尝试更改名称。我还没有到达如何实现不同玩家数量的阶段。
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class wtf extends JPanel implements ActionListener {
static String zerostring = "Zero Player Game";
static String onestring = "One Player Game";
static String twostring = "Two Player Game";
public wtf() {
super(new BorderLayout());
//Create the radio buttons.
JRadioButton zeroButton = new JRadioButton(zerostring);
zeroButton.setMnemonic(KeyEvent.VK_C);
zeroButton.setActionCommand(zerostring);
JRadioButton oneButton = new JRadioButton(onestring);
oneButton.setMnemonic(KeyEvent.VK_B);
oneButton.setActionCommand(onestring);
oneButton.setSelected(true);
JRadioButton twoButton = new JRadioButton(twostring);
twoButton.setMnemonic(KeyEvent.VK_D);
twoButton.setActionCommand(twostring);
//Group the radio buttons.
ButtonGroup group = new ButtonGroup();
group.add(zeroButton);
group.add(oneButton);
group.add(twoButton);
//Register a listener for the radio buttons.
zeroButton.addActionListener(this);
oneButton.addActionListener(this);
twoButton.addActionListener(this);
//Put the radio buttons in a column in a panel.
JPanel radioPanel = new JPanel(new GridLayout(0, 1));
radioPanel.add(zeroButton);
radioPanel.add(oneButton);
radioPanel.add(twoButton);
add(radioPanel, BorderLayout.LINE_START);
setBorder(BorderFactory.createEmptyBorder(20,20,20,20));
}
/** Listens to the radio buttons. */
public void actionPerformed(ActionEvent e) {
//do something with e.getActionCommand()
}
}
所以我还有两个课程,但我认为目前的问题就在这里,我害怕这会成为一个巨大的代码墙。我有更多的问题,但我想我会一次拿一个,所以我不会发布任何人都不想阅读的页面和代码页。
答案 0 :(得分:2)
您正在做的一个问题是在添加组件之前在JFrame 上调用pack()
。不要这样做,而是添加您可以先处理的所有组件,然后调用pack()
,然后setVisible(true)