如果我设计一个选课单
当我姓名学号填好、选好课之后
按下确认钮
我想要得到的结果是
在另一个视窗
显示出我的选课资料
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 可以看到全部内容