xuexiaoxinxichakan.java~1~
来自「中小学校园的教师」· JAVA~1~ 代码 · 共 40 行
JAVA~1~
40 行
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(13, 346, 770, 230)); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?