?? buttontablepanel.java~5~
字號:
package superframe.factionpanels;
import javax.swing.JButton;
import com.borland.jbcl.layout.XYLayout;
import com.borland.jbcl.layout.*;
public class ButtonTablePanel extends TablePanel {
boolean buttonEnable;
public ButtonTablePanel(boolean e){
super();
buttonEnable=e;
try {
jbInitButton();
} catch (Exception ex) {
ex.printStackTrace();
}
}
private void jbInitButton() throws Exception {
jButton_new.setText("新建");
this.setLayout(xYLayout1);
this.add(jButton_new, new XYConstraints(557, 417, 79, 31));
jButton_new.setVisible(buttonEnable);
}
JButton jButton_new = new JButton();
XYLayout xYLayout1 = new XYLayout();
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -