?? untitled1.java~5~
字號:
package xscjgl;
import javax.swing.JComponent;
import javax.swing.JButton;
import java.awt.Rectangle;
import javax.swing.JFrame;
import com.borland.jbcl.layout.XYLayout;
import com.borland.jbcl.layout.*;
/**
* <p>Title: </p>
*
* <p>Description: </p>
*
* <p>Copyright: Copyright (c) 2006</p>
*
* <p>Company: </p>
*
* @author not attributable
* @version 1.0
*/
public class Untitled1 extends JFrame {
public Untitled1() {
try {
jbInit();
} catch (Exception ex) {
ex.printStackTrace();
}
}
public static void main(String[] args) {
Untitled1 untitled1 = new Untitled1();
untitled1.setVisible(true);
}
private void jbInit() throws Exception {
jButton1.setText("jButton1");
this.getContentPane().setLayout(xYLayout1);
this.getContentPane().add(jButton1, new XYConstraints(1, 104, -1, -1));
}
JButton jButton1 = new JButton();
XYLayout xYLayout1 = new XYLayout();
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -