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

📄 deleteclass.java

📁 客户管理系统,很强大的功能,能完成日常生活中的大部分事务
💻 JAVA
字号:
package custom_management;

import javax.swing.*;
import java.awt.*;
import com.borland.jbcl.layout.XYLayout;
import com.borland.jbcl.layout.*;

public class DeleteClass
    extends JFrame {
  public DeleteClass() {
    try {
      jbInit();
    }
    catch (Exception ex) {
      ex.printStackTrace();
    }
  }

  private void jbInit() throws Exception {
    jPanel1.setLayout(xYLayout1);
    jButton1.setText("添加");
    jButton2.setText("编辑");
    jButton3.setText("删除");
    jButton4.setText("确 定");
    jButton5.setText("取 消");
    jPanel2.setLayout(xYLayout2);
    jButton6.setText("添加");
    jButton7.setText("编辑");
    jButton8.setToolTipText("");
    jButton8.setText("删除");
    jButton9.setText("确 定");
    jButton10.setText("取 消");
    this.getContentPane().add(jTabbedPane1, java.awt.BorderLayout.CENTER);
    jTabbedPane1.add(jPanel1, "配置用户");
    jPanel1.add(jScrollPane1, new XYConstraints(10, 3, 286, 216));
    jPanel1.add(jButton1, new XYConstraints(324, 22, -1, -1));
    jPanel1.add(jButton3, new XYConstraints(324, 84, -1, -1));
    jPanel1.add(jButton5, new XYConstraints(215, 242, -1, -1));
    jPanel1.add(jButton2, new XYConstraints(324, 53, -1, -1));
    jPanel1.add(jButton4, new XYConstraints(51, 242, -1, -1));
    jScrollPane1.getViewport().add(jTable1);
    jTabbedPane1.add(jPanel2, "配置角色");
    jPanel2.add(jScrollPane2, new XYConstraints(5, 5, 297, 216));
    jPanel2.add(jButton6, new XYConstraints(323, 23, -1, -1));
    jPanel2.add(jButton8, new XYConstraints(323, 89, -1, -1));
    jPanel2.add(jButton7, new XYConstraints(323, 56, -1, -1));
    jPanel2.add(jButton9, new XYConstraints(68, 232, 63, -1));
    jPanel2.add(jButton10, new XYConstraints(221, 232, 63, -1));
    jScrollPane2.getViewport().add(jTable2);
  }

  JTabbedPane jTabbedPane1 = new JTabbedPane();
  JPanel jPanel1 = new JPanel();
  JScrollPane jScrollPane1 = new JScrollPane();
  JTable jTable1 = new JTable();
  XYLayout xYLayout1 = new XYLayout();
  JButton jButton1 = new JButton();
  JButton jButton2 = new JButton();
  JButton jButton3 = new JButton();
  JButton jButton4 = new JButton();
  JButton jButton5 = new JButton();
  JPanel jPanel2 = new JPanel();
  JScrollPane jScrollPane2 = new JScrollPane();
  XYLayout xYLayout2 = new XYLayout();
  JTable jTable2 = new JTable();
  JButton jButton6 = new JButton();
  JButton jButton7 = new JButton();
  JButton jButton8 = new JButton();
  JButton jButton9 = new JButton();
  JButton jButton10 = new JButton();
}

⌨️ 快捷键说明

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