日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

作业8

發布時間:2025/5/22 编程问答 27 豆豆
生活随笔 收集整理的這篇文章主要介紹了 作业8 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
package MyFirstWindow; import java.awt.*; import java.awt.event.*; import javax.swing.*; public class MyWindow extends JFrame implements ActionListener { 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(5,25); MyWindow() { super("work"); Container contentPane = getContentPane(); JPanel northPanel = new JPanel(); northPanel.setLayout(new GridLayout(2,1)); Box box1 = Box.createHorizontalBox(); Box box2 = Box.createHorizontalBox(); box1.add(Box.createHorizontalStrut(3)); box1.add(interestLabel ); box1.add(badmintonCheck ); box1.add(tableTtennisCheck ); box1.add(singCheck); ButtonGroup group = new ButtonGroup(); group.add(maleRadioButton); group.add(femaleRadioButton); box2.add(Box.createHorizontalStrut(3)); box2.add(genderLabel); box2.add(maleRadioButton); box2.add(femaleRadioButton); northPanel.add(box1); northPanel.add(box2); contentPane.add(northPanel, BorderLayout.NORTH); JScrollPane scrollPane = new JScrollPane(textArea); contentPane.add(scrollPane, BorderLayout.CENTER); badmintonCheck.addActionListener(this); tableTtennisCheck.addActionListener(this); singCheck.addActionListener(this); maleRadioButton.addActionListener(this); femaleRadioButton.addActionListener(this); setVisible(true); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); setSize(400, 300); } 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; } } public static void main(String args[]) { new MyWindow(); } }

  

?

轉載于:https://www.cnblogs.com/spsglz/p/8017904.html

《新程序員》:云原生和全面數字化實踐50位技術專家共同創作,文字、視頻、音頻交互閱讀

總結

以上是生活随笔為你收集整理的作业8的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。