📄 jiaoshizonghexinxichaxun.java~2~
字号:
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 jiaoShiZongHeXinXiChaXun extends JFrame { JLabel jLabel1 = new JLabel(); JTextField jTextField1 = new JTextField(); XYLayout xYLayout1 = new XYLayout(); public jiaoShiZongHeXinXiChaXun() { try { jbInit(); } catch(Exception ex) { ex.printStackTrace(); } } void jbInit() throws Exception { jLabel1.setFont(new java.awt.Font("Dialog", 0, 13)); jLabel1.setText("请输入教师编号"); this.getContentPane().setLayout(xYLayout1); jTextField1.setText("jTextField1"); this.getContentPane().add(jLabel1, new XYConstraints(56, 40, 92, 21)); this.getContentPane().add(jTextField1, new XYConstraints(190, 38, 128, 23)); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -