美文网首页
Swing零散记忆

Swing零散记忆

作者: feiyingmm | 来源:发表于2017-10-24 20:14 被阅读0次

Swing中使用GridBagLayout布局的时候

调整距离边框距离

可以使用fill 属性,搭配insets,类设置距离边框的距离

  this.rulePane = new UIPanel();
  this.rulePane.setName("rulePane");

  GridBagLayout gridbag = new GridBagLayout();
  GridBagConstraints c = new GridBagConstraints();
  this.rulePane.setLayout(gridbag);

  c.fill = GridBagConstraints.BOTH;

  c.ipadx = 18;
  c.insets = new Insets(20, 10, 2, 400);
  
  /*c.anchor = GridBagConstraints.NORTH;
  c.weightx = 2;
  c.weighty = 1;*/

  // 当前集团 TODO
  c.gridwidth = GridBagConstraints.RELATIVE;
  this.rulePane.add(this.getlbGrp(), c);
  c.gridwidth = GridBagConstraints.REMAINDER;
  this.rulePane.add(this.getlbGrpcode(), c);
  // 归零标志
  c.fill = GridBagConstraints.BOTH;
  c.insets = new Insets(2, 10, 2, 400);
  c.gridwidth = GridBagConstraints.RELATIVE;
  this.rulePane.add(this.getlblResetFlag(), c);
  c.gridwidth = GridBagConstraints.REMAINDER;
  this.rulePane.add(this.getcbbResetFlag(), c);
设置有布局的宽高

this.ruleMainPane.setPreferredSize(new Dimension(1001, 330));
GridBagLayout布局

其他的设置宽高
this.ruleTitlePane = new UIPanel();
this.ruleTitlePane.setName("ruleTitlePane");
this.ruleTitlePane.setBorder(new BorderCustomerLine());
this.ruleTitlePane.setLayout(new GridLayout());
this.ruleTitlePane.setBackground(new Color(204, 204, 204));
//Jack
this.ruleTitlePane.setBounds(24, 29, 970, 32);
this.ckbPrefix = new UICheckBox();
this.ckbPrefix.setName("ckbPrefix");
this.ckbPrefix.setText("");
this.ckbPrefix.setHorizontalAlignment(SwingConstants.CENTER);
//Jack
this.ckbPrefix.setBounds(23, 67, 122, 22);

相关文章

  • Swing零散记忆

    Swing中使用GridBagLayout布局的时候 调整距离边框距离 可以使用fill 属性,搭配insets,...

  • Playground

    I swing swing swing. I slide slide slide I ride ride ride...

  • 零散记忆

    我记得,有人在等我。 那是一个苍白的少年,干净的像一张白纸。 我走向他。 我好像在哪里见过你。 是个有刀光剑影的地...

  • 零散记忆

    这篇文章将以随意体、碎碎念方式记录下安顺健的点滴成长,不断编辑后可能会很长。 2016年7月7日出生14天后,脐带...

  • 零散记忆

    零零散散的破破碎碎的记忆碎片想满天星一样散步在脑子中,想打乱的拼图一样,但它太碎太碎了,再也拼布起来了,一幅幅破碎...

  • 生亦欢兮死亦欢:试译史蒂文森,The Swing秋千

    The Swing How do you like to go up in a swing, Up in the ...

  • 《Oracle Java SE编程指南》23-02:AWT和Sw

    内容导航: 前言 1、JFC 2、AWT 3、Swing3.1、Swing中的组件3.2、常用Swing组件 前言...

  • Java学习之路算法

    Javax.swing Swing组件,新的窗口组件包 '''' #include ''''

  • 推荐系统 - Swing算法

    Swing算法基础 Swing算法是阿里巴巴提出的一种召回算法,swing算法考虑user - item - us...

  • 零散的记忆

    今日早起,和友微聊,把我当做知心朋友,对我提了个小醒。原本我还不识自己真面目,听她所言后不禁毛骨悚然。早听过一...

网友评论

      本文标题:Swing零散记忆

      本文链接:https://www.haomeiwen.com/subject/bmbxpxtx.html