1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
import java.awt.*;
import java.awt.event.*;
public class TextAreaFrame{
public static void main(String[] args) {
Frame frame=new Frame("TEXT EDITOR");
TextArea textArea1=new TextArea("",10,20);
frame.add(textArea1);
frame.setLayout(new FlowLayout());
frame.setSize(600,300);
frame.setVisible(true);
frame.addWindowListener(new WindowAdapter(){
public void windowClosing(WindowEvent e){
System.exit(0);
}
});
TextArea textArea2=new TextArea("",10,20);
frame.add(textArea2);
frame.setLayout(new FlowLayout());
frame.setSize(600,300);
frame.setVisible(true);
frame.addWindowListener(new WindowAdapter(){
public void windowClosing(WindowEvent e){
System.exit(0);
}
});
}
} |