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

📄 jiaoshizonghexinxiguanli.java

📁 中小学校园的教师
💻 JAVA
字号:
package untitled2;import javax.swing.*;import java.awt.*;import com.borland.jbcl.layout.*;import java.awt.event.*;/** * <p>Title: </p> * <p>Description: </p> * <p>Copyright: Copyright (c) 2006</p> * <p>Company: </p> * @author not attributable * @version 1.0 */public class jiaoShiZongHeXinXiGuanLi extends JFrame {  XYLayout xYLayout1 = new XYLayout();  JLabel jLabel1 = new JLabel();  JTextField jTextField1 = new JTextField();  JList jList1 = new JList();  JButton jButton1 = new JButton();  JButton jButton2 = new JButton();  JButton jButton3 = new JButton();  JButton jButton4 = new JButton();  public jiaoShiZongHeXinXiGuanLi() {    try {      jbInit();    }    catch(Exception ex) {      ex.printStackTrace();    }  }  void jbInit() throws Exception {    jLabel1.setFont(new java.awt.Font("Dialog", 0, 13));    jLabel1.setRequestFocusEnabled(true);    jLabel1.setText("请输入教师编号");    this.getContentPane().setLayout(xYLayout1);    jTextField1.setText("");    jButton1.setFont(new java.awt.Font("Dialog", 0, 13));    jButton1.setText("查询");    jButton2.setFont(new java.awt.Font("Dialog", 0, 13));    jButton2.setText("清空");    jButton3.setFont(new java.awt.Font("Dialog", 0, 13));    jButton3.setText("取消");    jButton3.addActionListener(new jiaoShiZongHeXinXiGuanLi_jButton3_actionAdapter(this));    jButton4.setFont(new java.awt.Font("Dialog", 0, 13));    jButton4.setText("保存");    this.setTitle("欢迎您进入教师综合信息管理界面");    this.getContentPane().add(jList1,       new XYConstraints(0, 88, 400, 109));    this.getContentPane().add(jLabel1, new XYConstraints(16, 34, -1, -1));    this.getContentPane().add(jTextField1,  new XYConstraints(128, 32, 153, -1));    this.getContentPane().add(jButton1,  new XYConstraints(311, 31, -1, -1));    this.getContentPane().add(jButton2, new XYConstraints(62, 236, -1, -1));    this.getContentPane().add(jButton3,    new XYConstraints(173, 236, -1, -1));    this.getContentPane().add(jButton4,  new XYConstraints(292, 236, -1, -1));  }  void jButton3_actionPerformed(ActionEvent e) {System.exit(0);  }}class jiaoShiZongHeXinXiGuanLi_jButton3_actionAdapter implements java.awt.event.ActionListener {  jiaoShiZongHeXinXiGuanLi adaptee;  jiaoShiZongHeXinXiGuanLi_jButton3_actionAdapter(jiaoShiZongHeXinXiGuanLi adaptee) {    this.adaptee = adaptee;  }  public void actionPerformed(ActionEvent e) {    adaptee.jButton3_actionPerformed(e);  }}

⌨️ 快捷键说明

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