如果我設計一個選課單
當我姓名學號填好、選好課之後
按下確認鈕
我想要得到的結果是
在另一個視窗
顯示出我的選課資料
EX:
姓名:XXX
學號:XXX
選課的資料:
CH1
CH2
CH3...
這樣的話...在按鈕事件的程式碼
我應該怎麼打呢?
------------------------------------------------------------------------------------------------------------------------------
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class A9307008 extends JFrame implements ActionListener
{
String tCommand1 = "Text1";
String tCommand2 = "Text2";
JTextField ins1, ins2;
JLabel label1, label2, show1, show2, show3;
JCheckBox ch1, ch2, ch3, ch4, ch5, ch6,
ch7, ch8, ch9, ch10, ch11, ch12,
ch13, ch14, ch15, ch16, ch17, ch18;
JButton btn;
public A9307008()
{
super("~* Try Box *~");
setLayout(null);
setResizable(false);
setBounds(100,100,600,400);
/*建置menu*/
JMenuBar menu = new JMenuBar();
setJMenuBar(menu);
JMenu file = new JMenu("File(F)");
file.setMnemonic(KeyEvent.VK_F);
JMenuItem item;
file.add(item = new JMenuItem("Exit(X)", KeyEvent.VK_X));
item.addActionListener(this);
menu.add(file);
/*姓名、學號*/
ins1 = new JTextField(8);
ins1.setBounds(90,20,90,15);
ins1.setActionCommand(tCommand1);
ins1.addActionListener(this);
ins2 = new JTextField(8);
ins2.setBounds(90,40,90,15);
ins2.setActionCommand(tCommand2);
ins2.addActionListener(this);
label1 = new JLabel("學生姓名:");
label1.setLabelFor(ins1);
label1.setBounds(30, ..
訪客只能看到部份內容,免費 加入會員 或由臉書 Google 可以看到全部內容