java学习一:文本框与文字设置举例

import java.awt.*;
public class text extends Frame{
     TextField text1;
     public text(){
            setLayout (new FlowLayout());//设置Frame的布局
            text1=new TextField(20);//设置文本框大小
            text1.setText("hello,Blooming!");//设置文本框内容
            setSize(200,180);//设置Frame大小
            setLocation(100,100);//设置Frame位置(左上角点的位置)
            add(text1);//将文本框放到Frame中
            setVisible(true);将Frame设置为可见状态
                   }
public static void main(String args[])
{
         text mytext=new text();
}




}

你可能感兴趣的:(java学习一:文本框与文字设置举例)