11.15Java第十二週作業

作業:

編寫一個JFrame窗口,要求如下:

1.在窗口的NORTH區放置一個JPanel面板。

2.JPanel面板放置如下組件:

(1)JLable標籤,標籤文本爲“興趣”,右邊接着是三個JCheckBox多選按鈕,選項分別是“羽毛球”、“乒乓球”、“唱歌”。可以多選。

(2)JLabel標籤,標籤文本爲“性別”,右邊接着是兩個JRadioButton按鈕,選項分別是“男”、“女”。置成單選按鈕,提示:使用ButtonGroup類 。

(3)興趣標籤及按鈕放在第一行,性別標籤及按鈕放在第二行,分別藉助兩個行型Box容器安排這兩行組件的位置,而兩個行型Box容器放入JPanel面板中,要兩行組件對齊的話,可以把JPanel面板設置兩行一列的GridLayout佈局。

3.窗口的CENTER區域放置一個JScrollPane容器,容器中放置一個JTextArea文本域。

4.當點擊JCheckBox多選按鈕和JRadioButton按鈕時,如果是選中操作,則把選中項的文本顯示在JTextArea文本域,每行顯示一個選項。可以重複點擊,每次點擊都顯示選中項。


代碼實現:
package j1108;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class Xjframe extends JFrame implements ActionListener{
		Box  boxV1, boxV2;
		JLabel interestLabel = new JLabel("興趣:");     
	    JCheckBox badmintonCheck = new JCheckBox("羽毛球"); 
	    JCheckBox tableTtennisCheck = new JCheckBox("乒乓球"); 
	    JCheckBox singCheck = new JCheckBox("唱歌");
	    JLabel genderLabel = new JLabel("性別:");
	    JRadioButton maleRadioButton = new JRadioButton("男");
	    JRadioButton femaleRadioButton = new JRadioButton("女");
		JTextArea textArea = new JTextArea(2,10);
		Xjframe(){
			super("跨1xx的小程序");
			Container contentPane = getContentPane();       
	        JPanel northPane = new JPanel();
	        northPane.setLayout(new GridLayout(2,1));  
	        boxV1 =Box.createHorizontalBox();
	        boxV1.add(interestLabel);
	        boxV1.add(badmintonCheck);
	        boxV1.add(tableTtennisCheck);
	        boxV1.add(singCheck);
	        ButtonGroup group = new ButtonGroup();
	        group.add(maleRadioButton);
	        group.add(femaleRadioButton); 
	        boxV2 =Box.createHorizontalBox();;
	        boxV2.add(genderLabel);
	        boxV2.add(maleRadioButton);
	        boxV2.add(femaleRadioButton);
	        JScrollPane scrollPane = new JScrollPane(textArea);
	        contentPane.add(scrollPane, BorderLayout.CENTER);
	        northPane.add(boxV1); 
	        northPane.add(boxV2);
	        contentPane.add(northPane, BorderLayout.NORTH); 
	        badmintonCheck.addActionListener(this); 
	        tableTtennisCheck.addActionListener(this); 
	        singCheck.addActionListener(this);
	        maleRadioButton.addActionListener(this);
	        femaleRadioButton.addActionListener(this);
	        validate();
	        setBounds(300,300,400,300);
	        setVisible(true);
	        setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);	 
	        }
		public void actionPerformed(ActionEvent e)
	     {
	          if(e.getSource() == badmintonCheck)
	          {
	              if(badmintonCheck.isSelected() == true)
	              {
	                   textArea.append("羽毛球" + "\n"); 
	              }
	          }  
	          else if(e.getSource() == tableTtennisCheck)
	          {
	              if(tableTtennisCheck.isSelected() == true)
	              {
	                   textArea.append("乒乓球" + "\n"); 
	              }          
	          } 
	          else if(e.getSource() == singCheck)
	          {
	              if(singCheck.isSelected() == true)
	              {
	                   textArea.append("唱歌" + "\n"); 
	              } 
	          }
	          else if(e.getSource() == maleRadioButton)
	          {
	             if(maleRadioButton .isSelected() == true)
	             {
	                   textArea.append("男" + "\n"); 
	             } 
	          }

	          else if(e.getSource() == femaleRadioButton)
	          {
	             if(femaleRadioButton .isSelected() == true)
	             {
	                   textArea.append("女" + "\n"); 
	             } 
	          }
	         else
	         {  
	              return; 
	         }
	     }
}
測試類:
package j1108;
public class Test {
	public static void main(String args[]){
        new Xjframe();
        }
}
測試結果:



總結:
事件編程三步
1:確定事件源與事件類型

2:確定監聽器接口並實現事件監聽器

3:將事件監聽器註冊到事件源。



發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章