⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 xuexiaoxinxichakan.java~3~

📁 中小学校园的教师
💻 JAVA~3~
字号:
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 xueXiaoXinXiChaKan extends JFrame {  XYLayout xYLayout1 = new XYLayout();  JTextArea jTextArea1 = new JTextArea();  JPanel jPanel1 = new JPanel();  public xueXiaoXinXiChaKan() {    try {      jbInit();    }    catch(Exception ex) {      ex.printStackTrace();    }  }  void jbInit() throws Exception {    this.setSize(new Dimension(800, 600));    this.setTitle("欢迎您进入学校信息查看界面");    this.getContentPane().setLayout(xYLayout1);    jTextArea1.setText("");    jPanel1.setBorder(BorderFactory.createRaisedBevelBorder());    this.getContentPane().add(jTextArea1,  new XYConstraints(13, 20, 769, 298));    this.getContentPane().add(jPanel1,               new XYConstraints(16, 346, 767, 192));  }}

⌨️ 快捷键说明

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