【发布时间】:2011-10-14 05:07:18
【问题描述】:
我正在尝试创建一个动态的 Swing GUI。当我点击添加/删除按钮时,我需要添加/删除JPanels。我无法动态添加JPanels。最初JPanel 加载但JPanels 的数组无法工作。我该怎么做?
import java.awt.*;
import java.awt.event.*;
import java.io.*;
import javax.print.attribute.standard.JobHoldUntil;
import javax.swing.*;
public class AccessoryFileChooser2 extends JFrame {
JFileChooser chooser = null;
JLabel statusbar;
JLabel file;
JCheckBox checkBox;
int count;
int increment;
JPanel [] panel = new JPanel[10]; //array
public AccessoryFileChooser2() {
setSize(350, 200);
count=0;
increment=1;
setDefaultCloseOperation(EXIT_ON_CLOSE);
final Container c = getContentPane();
c.setLayout(new BorderLayout());
checkBox =new JCheckBox("");
String fileName = "Choose File Name";
file = new JLabel(fileName);
final JButton accButton = new JButton("Browse");
final JButton add = new JButton("Add");
final JButton validate = new JButton("Validate");
final JButton delete = new JButton("Delete");
accButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ae) {
int option = chooser.showOpenDialog(AccessoryFileChooser2.this);
if (option == JFileChooser.APPROVE_OPTION) {
statusbar.setText(
(
chooser.getSelectedFile().getPath()));
}
}
});
statusbar = new JLabel("Output of your selection will go here");
chooser = new JFileChooser();
final JPanel panels =new JPanel();
//JPanel panel2 =new JPanel();
panel[count]=new JPanel();
panel[count].add(checkBox);
panel[count].add(file);
panel[count].add(accButton );
panel[count].add(statusbar);
c.add(panel[count],BorderLayout.CENTER);
panels.add(add);
panels.add(delete);
panels.add(validate);
add.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e)
{
count=count+1;;
increment=increment+1;;
panel[count]=new JPanel();
System.out.println("You clicked the ADD button");
panel[count].add(checkBox);
panel[count].add(file);
panel[count].add(accButton );
panel[count].add(statusbar);
panel[count].revalidate();
panel[count].repaint();
panel[count].updateUI();
c.add(panel[count]);
}
});
delete.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e)
{
increment--;
System.out.println("You clicked the Delete button");
System.out.println(checkBox.isSelected());
for (int i = 0; i < panel.length; i++) {
JCheckBox box=(JCheckBox) panel[i].getComponent(0);
if(box.isSelected()){
c.remove(panel[i]);
}
}
}
});
validate.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e)
{
System.out.println("You clicked the Validate button");
}
});
c.add(panels,BorderLayout.SOUTH);
}
public static void main(String args[]) {
AccessoryFileChooser2 afc = new AccessoryFileChooser2();
afc.setVisible(true);
}
}
【问题讨论】: