0

大家好,我打算创建登录面板。在该面板中应该是用户 JLabel、密码 JLabel、用户 JTextField、密码 JTextField 和 JButon。我想使用该按钮切换到新的 JPanel。我读过最好的方法是 CardLayout ,我正在尝试修改该代码:

//Where the GUI is assembled:
//Put the JComboBox in a JPanel to get a nicer look.
JPanel comboBoxPane = new JPanel(); //use FlowLayout
String comboBoxItems[] = { BUTTONPANEL, TEXTPANEL };
JComboBox cb = new JComboBox(comboBoxItems);
cb.setEditable(false);
cb.addItemListener(this);
comboBoxPane.add(cb);
...
pane.add(comboBoxPane, BorderLayout.PAGE_START);
pane.add(cards, BorderLayout.CENTER);
...

//Method came from the ItemListener class implementation,
//contains functionality to process the combo box item selecting
public void itemStateChanged(ItemEvent evt) {
    CardLayout cl = (CardLayout)(cards.getLayout());
    cl.show(cards, (String)evt.getItem());
}

我正在尝试修改那部分代码

JComboBox cb = new JComboBox(comboBoxItems);
cb.setEditable(false);
cb.addItemListener(this);
comboBoxPane.add(cb);
pane.add(comboBoxPane, BorderLayout.PAGE_START);
pane.add(cards, BorderLayout.CENTER);

并将其更改为:

JButton loginButton = new JButton();
loginButton.addItemListener(this);
comboBoxPane.add(loginButton);
pane.add(loginButton, BorderLayout.PAGE_START);
pane.add(cards, BorderLayout.CENTER);

我不能使用:

JButton loginButton = new JButton(comboBoxItems);

因为编译器返回错误:构造函数 JButton(String[]) 未定义

有谁能帮我解决我的问题。我是Java编程的新手

4

1 回答 1

3

JButton没有采用String数组的构造函数。调用就足够了:

JButton loginButton = new JButton("Login");

请参阅:使用 JFC/Swing 创建 GUI

于 2012-11-25T21:24:38.440 回答