我遇到了GUI中複選框的問題。我有5個複選框和一個名爲「生成報告」的按鈕。我想要做的是當我按下「生成報告」時,我想檢查選中哪些複選框,以便我可以用複選框中選中的信息「生成報告」。我知道如何檢查選中的是哪一個,但是如果選中了一個複選框,然後在點擊「生成報告」之前取消選中,恐怕程序在選擇之後不知道它是否被取消選擇。已選中複選框
這裏是我的代碼:
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import java.util.*;
public class MonthReportGUI implements ItemListener
{
static Calendar calendar = Calendar.getInstance();
JFrame frame = new JFrame("Month Report");
JPanel mainPanel = new JPanel();
JPanel comboPanel = new JPanel();
JLabel info = new JLabel("Use the check boxes to select the information to include in the month report");
JCheckBox checkBoxOne = new JCheckBox("Number accomplished");
JCheckBox checkBoxTwo = new JCheckBox("Number not accomplished");
JCheckBox checkBoxThree = new JCheckBox("Total Number of Jobs");
JCheckBox checkBoxFour = new JCheckBox("Month Salary");
JCheckBox checkBoxFive = new JCheckBox("Average wage per job");
Boolean boxOneSelected = false;
static String [] monthList = {"January", "February", "March", "April", "May", "June", "July", "August", "September",
"October", "November", "December"};
static String [] createYearList()
{
String [] yearList = new String[89];
String year = (calendar.get(Calendar.YEAR)) + "";
for(int i = 0; i < 88; i++)
yearList[i] = (Integer.parseInt(year) + i) + "";
return(yearList);
}
JLabel monthL = new JLabel("Month:");
JLabel yearL = new JLabel("Year:");
static JComboBox monthCB = new JComboBox(monthList);
static JComboBox yearCB = new JComboBox(createYearList());
JButton generate = new JButton("Generate Report"); // ACTION HAS TO BE ADDED
Boolean oneSelected = false;
Boolean twoSelected = false;
Boolean threeSelected = false;
Boolean fourSelected = false;
Boolean fiveSelected = false;
MonthReportGUI()
{
mainPanel.setLayout(new GridLayout(8,1));
mainPanel.add(info, BorderLayout.CENTER);
mainPanel.add(checkBoxOne, BorderLayout.CENTER);
mainPanel.add(checkBoxTwo, BorderLayout.CENTER);
mainPanel.add(checkBoxThree, BorderLayout.CENTER);
mainPanel.add(checkBoxFour, BorderLayout.CENTER);
mainPanel.add(checkBoxFive, BorderLayout.CENTER);
mainPanel.add(comboPanel);
mainPanel.add(generate, BorderLayout.CENTER);
comboPanel.add(monthL);
comboPanel.add(monthCB);
comboPanel.add(yearL);
comboPanel.add(yearCB);
checkBoxOne.addItemListener(this);
checkBoxTwo.addItemListener(this);
checkBoxThree.addItemListener(this);
checkBoxFour.addItemListener(this);
checkBoxFive.addItemListener(this);
frame.add(mainPanel);
frame.pack();
frame.setVisible(true); //set false
}
public void itemStateChanged(ItemEvent e) //perform action to know which are selected to use for writting report
{
Object source = e.getItemSelectable();
if (source == checkBoxOne)
{
System.out.println(boxOneSelected);
boxOneSelected = true;
System.out.println(boxOneSelected);
}
}
public static void main (String agrs[])
{
MonthReportGUI monthReport = new MonthReportGUI();
}
}
謝謝您的時間。
謝謝你真的很有幫助!它的工作:D – greinodacosta