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

📄 xuigaishanchujiaoshixinxi.java

📁 中小学校园的教师
💻 JAVA
字号:
package untitled2;import javax.swing.*;import java.awt.*;import com.borland.jbcl.layout.*;import com.borland.dbswing.*;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 xuiGaiShanChuJiaoShiXInXi extends JFrame {  XYLayout xYLayout1 = new XYLayout();  JTextField jTextField1 = new JTextField();  JLabel jLabel1 = new JLabel();  JTextField jTextField2 = new JTextField();  JLabel jLabel2 = new JLabel();  JdbTable jdbTable1 = new JdbTable();  JButton jButton1 = new JButton();  JButton jButton2 = new JButton();  JButton jButton4 = new JButton();  public xuiGaiShanChuJiaoShiXInXi() {    try {      jbInit();    }    catch(Exception ex) {      ex.printStackTrace();    }  }  void jbInit() throws Exception {    jTextField1.setToolTipText("");    jTextField1.setText("");    this.setSize(new Dimension(800, 600));    this.setTitle("欢迎您进入删除,修改教师信息界面");    this.getContentPane().setLayout(xYLayout1);    jLabel1.setFont(new java.awt.Font("Dialog", 0, 13));    jLabel1.setText("请输入教师编号");    jLabel2.setFont(new java.awt.Font("Dialog", 0, 13));    jLabel2.setText("请输入教师姓名");    jButton1.setFont(new java.awt.Font("Dialog", 0, 13));    jButton1.setText("删除");    jButton2.setFont(new java.awt.Font("Dialog", 0, 13));    jButton2.setText("修改");    jButton4.setFont(new java.awt.Font("Dialog", 0, 13));    jButton4.setText("退出");    jButton4.addActionListener(new xuiGaiShanChuJiaoShiXInXi_jButton4_actionAdapter(this));    jTextField2.setText("");    this.getContentPane().add(jTextField1, new XYConstraints(179, 48, 198, -1));    this.getContentPane().add(jTextField2,  new XYConstraints(178, 85, 199, 23));    this.getContentPane().add(jLabel2, new XYConstraints(56, 86, -1, -1));    this.getContentPane().add(jLabel1, new XYConstraints(54, 52, -1, -1));    this.getContentPane().add(jdbTable1,    new XYConstraints(20, 175, 760, 286));    this.getContentPane().add(jButton4, new XYConstraints(665, 504, -1, -1));    this.getContentPane().add(jButton2, new XYConstraints(542, 504, -1, -1));    this.getContentPane().add(jButton1, new XYConstraints(416, 505, -1, -1));  }  void jButton4_actionPerformed(ActionEvent e) {this.dispose();  }}class xuiGaiShanChuJiaoShiXInXi_jButton4_actionAdapter implements java.awt.event.ActionListener {  xuiGaiShanChuJiaoShiXInXi adaptee;  xuiGaiShanChuJiaoShiXInXi_jButton4_actionAdapter(xuiGaiShanChuJiaoShiXInXi adaptee) {    this.adaptee = adaptee;  }  public void actionPerformed(ActionEvent e) {    adaptee.jButton4_actionPerformed(e);  }}

⌨️ 快捷键说明

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