Java 绝对定位

  1.  import java.awt.*;
  2. import javax.swing.*;
  3. public class Test extends JFrame{
  4. public Test(){
  5. this.setSize(500,500);
  6. this.setDefaultCloseOperation(this.EXIT_ON_CLOSE);
  7. this.setResizable(false);
  8. this.setLayout(null);//屏蔽 默认布局
  9. JButton button = new JButton("Test");
  10. int x = 30;//坐标x
  11. int y = 30;//坐标y;
  12. int width = 200;//组件宽
  13. int height = 200;//组件高
  14. button.setBounds(x,y,width,height);
  15. this.getContentPane().add(button);
  16. }
  17. public static void main(String [] args){
  18. new Test().setVisible(true);
  19. }
  20. }

你可能感兴趣的:(Java)