我正在尝试创建一个java,而且我在查看复选框时遇到了一些困难。我看了甲骨文教程,并包括了他们所有的代码,但我不知道我错过了什么。有什么想法吗?
public class HPAProgram {
public static void main(String[] args) {
MapWindow map = new MapWindow();
}
}
import java.awt.event.*;
import javax.swing.*; //notice javax
public class MapWindow extends JFrame
{
private static final int WIDTH = 600, HEIGHT = 800;
SettingsButtonsPanel button_panel = new SettingsButtonsPanel();
public MapWindow()
{
setLocationRelativeTo(null);
setTitle("HPA* Test");
setSize(WIDTH, HEIGHT);
setVisible(true);
setDefaultCloseOperation(EXIT_ON_CLOSE);
add(button_panel);
}
}
import java.awt.event.*;
import javax.swing.*; //notice javax
public class SettingsButtonsPanel extends JPanel implements ItemListener{
private static final int WIDTH = 600, HEIGHT = 200;
private static final int NUM_MAP_TYPE = 2;
private JCheckBox[] map_type;
JPanel panel = new JPanel();
public SettingsButtonsPanel(){
this.setBounds(0,0,WIDTH, HEIGHT);
map_type = new JCheckBox[NUM_MAP_TYPE];
map_type[0] = new JCheckBox("Sparse");
map_type[0].setSelected(true);
map_type[0].setVisible(true);
map_type[0].setLocation(0,0);
map_type[0].setSize(100,100);
map_type[1] = new JCheckBox("Maze");
map_type[1].setSelected(false);
for(int i = 0; i < NUM_MAP_TYPE; i++)
map_type[i].addItemListener(this);
}
public void itemStateChanged(ItemEvent e)
{
Object source = e.getItemSelectable();
//if(source == )
}
}发布于 2014-01-14 17:36:08
for(int i = 0; i < NUM_MAP_TYPE; i++) {
map_type[i].addItemListener(this);
this.add(map_type[i]);
}但是最好在面板上使用LayoutManager (例如BoxLayout)。
https://stackoverflow.com/questions/21119994
复制相似问题