[求助]关于手写SWING的一个问题
import javax.swing.*;
import java.awt.*;
public class Draw extends JFrame{
JPanel content;
JTextField txt=new JTextField();
Draw(){
content=(JPanel)getContentPane();
this.setDefaultCloseOperation(EXIT_ON_CLOSE);
this.setVisible(true);
this.setSize(400,300);
this.setTitle("测试");
content.setLayout(null);
txt.setBounds(150,100,80,80);
content.add(txt);
}
/******* main方法 *******/
public static void main(String [] args){
new Draw();
}
}
怎么看上面的代码都没错啊,在内容面板中放置一个文本域
可为什么编译后窗户里没有文本域,必须要拉动一下边框才能正常显示文本域呢?
那位高人可以指点一下啊,我到底错在那里,需要如何改正呢?先谢了