xitongguanliyuan.java

来自「中小学校园的教师」· Java 代码 · 共 37 行

JAVA
37
字号
package untitled2;import javax.swing.*;import java.awt.*;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 xiTongGuanLiYuan extends JFrame {  BorderLayout borderLayout1 = new BorderLayout();  JPanel jPanel1 = new JPanel();  public xiTongGuanLiYuan() {    try {      jbInit();    }    catch(Exception ex) {      ex.printStackTrace();    }  }  void jbInit() throws Exception {    jPanel1.setVisible(true);    this.getContentPane().setLayout(borderLayout1);    this.getContentPane().setBackground(Color.white);    this.setSize(new Dimension(800, 600));    this.getContentPane().add(jPanel1, BorderLayout.WEST);  }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?