❶ java程序設計題 編寫程序創建一個按鈕和一個文本域,當單擊按鈕時將按鈕上的文字顯示在文本域中。
import javax.swing.*;
import java.awt.event.*;
public class Freq extends JFrame implements ActionListener{
JButton jbutton=new JButton("請點擊我");
JTextField jtextfield=new JTextField();
public Freq(){
setTitle("監聽測試");
setSize(160,250);
this.getContentPane().setLayout(null);
jtextfield.setBounds(25,25,100,25);
jbutton.setBounds(25,75,100,25);
jbutton.addActionListener(this);
this.getContentPane().add(jtextfield);
this.getContentPane().add(jbutton);
}
public void actionPerformed(ActionEvent e){
jtextfield.setText(jbutton.getText());
}
public static void main(String[]args){
Freq x=new Freq();
x.setVisible(true);
x.setResizable(false);
}
}