import java.awt.BorderLayout;
import javax.swing.JFrame;
import javax.swing.JPanel;
public class ada extends JFrame{
private JPanel panel;
public ada()
{
this.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
panel = new JPanel();
panel.setLayout( new BorderLayout() );
this.setContentPane( panel );
this.setLocation( 300, 300 ); //这句设置指定显示的位置,可没起作用呀?
this.setSize( 400, 300 );
this.setResizable(false);
this.setVisible( true );
}
public static void main( String[] args )
{
new ada();
}
}
晕..找到原因了
在Eclipse下编译 显示在左上方.
在cmd下才显示的正确位置
这是为啥呀?
[此贴子已经被作者于2006-8-19 22:34:59编辑过]