您好,我想在运行时在面板上创建文本框,即当我在两个文本框中输入 3 和 4 时,它将在 Swing 中的按钮单击事件中打印 3 行和 4 列的文本框。这是我的代码。
JFrame jf=new JFrame();
JPanel jp=new JPanel();
JTextField jt1=new JTextField();
JTextField jt2=new JTextField();
JLabel jl1=new JLabel("Enter Row");
JLabel jl2=new JLabel("Enter Column");
JButton jb1=new JButton("OK");
JButton jb2=new JButton("Cancel");
jf.setContentPane(jp);
jp.setLayout(null);
jp.setBackground(Color.CYAN);
jp.add(jb1);
jp.add(jt1);
jp.add(jt2);
jp.add(jl1);
jp.add(jl2);
jp.add(jb2);
jf.setVisible(true);
jf.setSize(500,500);
jt1.setBounds(200,20,50,30);
jt2.setBounds(200,60,50,30);
jl1.setBounds(90, 20, 80, 30);
jl2.setBounds(90,60,80,30);
jb1.setBounds(150, 100, 80, 80);
jb1.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
}