Java復(fù)習(xí)學(xué)習(xí)筆記:swing中必備的代碼,基本控件等【詩書畫唱】

布局方式:this.setLayout(null);
大小:this.setSize(width,height)
顯示的位置:this.setlocationrelativeto(null);居中顯示
釋放資this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
顯示窗體:this.setVisible(true);
基本控件:
JLabel:文本控件
JTextField:文本框
JPasswordField:密碼框
JComboBox:下拉框
JButton:按鈕
JLabel lb1=new JLabel("用戶名");
//設(shè)置顯示的位置:
lb1.setBounds(x軸位置,y軸位置,寬度,高度)
this.add(lb1);
//設(shè)置字體:
聲明字體類:
Font f=new Font("使用的什么字體",字體的粗細(xì)bold,字體的大小25)
lb1.setFont(f);
改變字體的顏色:this.setForeground(Color.red);
改變背景色:this.setBackground(顏色值)
JCheckBox:復(fù)選框
JRadioButton:單選框
分組:
ButtonGroup bg1=new ButtonGroup();
bg1.add()
JTextArea:文本域
JScrollPane jsp=new JScrollPane("誰要設(shè)置滾動條就傳入誰");
jt1.setLineWrap(true);
標(biāo)簽: