xitongguanliyuan.java~1~

来自「中小学校园的教师」· JAVA~1~ 代码 · 共 41 行

JAVA~1~
41
字号
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();  OverlayLayout2 overlayLayout21 = new OverlayLayout2();  JPanel jPanel2 = new JPanel();  JPanel jPanel3 = new JPanel();  public xiTongGuanLiYuan() {    try {      jbInit();    }    catch(Exception ex) {      ex.printStackTrace();    }  }  void jbInit() throws Exception {    this.getContentPane().setLayout(borderLayout1);    jPanel1.setLayout(overlayLayout21);    jPanel2.setBackground(Color.cyan);    this.getContentPane().add(jPanel1, BorderLayout.CENTER);    jPanel1.add(jPanel2, null);    jPanel1.add(jPanel3, null);  }}

⌨️ 快捷键说明

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