在java gui界面中怎样让文本框水平居中输入和显示
2017-11-28 · 知道合伙人互联网行家
[java] view plain copy
package PanelTest;
/**
* 测试JPanel的布局问题
* 对两个组件JLabel和JButton进行布局
*
*/
import java.awt.*;
import javax.swing.*;
public class PanelLayoutTest {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
//try{
frameTest f = new frameTest();
f.setTitle("PanelLayoutTest");
f.setDefaultCloseOperation(f.EXIT_ON_CLOSE);
f.setVisible(true);
//}
//catch(Exception e){
// System.out.println(e);
//}
}
}
// JFrame class
class frameTest extends JFrame {
frameTest() {
panelTest p = new panelTest();
this.add(p);
this.pack();
}
}
// Panel class
class panelTest extends JPanel {
private JLabel label;
private JButton button;
panelTest() {
this.setLayout(new BorderLayout()); // 将panel的默认布局flow设置为设置边界布局,括号中是必须的
label=new JLabel();
label.setText("Test");
this.add(label, BorderLayout.SOUTH);//设置按钮的布局位置
button=new JButton("Test");
this.add(button, BorderLayout.NORTH);//设置label的布局位置
}
}