?? cab2bbutton.java
字號:
package com.component;
import java.awt.Dimension;
import java.awt.Font;
import javax.swing.JButton;
public class Cab2bButton extends JButton{
public Cab2bButton(String strLabel)
{
this(strLabel, false);
}
public Cab2bButton(String strLabel, boolean isSimpleButtonUI)
{
super(strLabel);
this.setPreferredSize(new Dimension(85,22));
/*Arial font in windows is mapped to the SansSerif logical name.*/
this.setFont(new Font("SansSerif",Font.PLAIN,12));
if(isSimpleButtonUI)
this.setUI(new Cab2bBasicButtonUI());
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -