?? deleteclass.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 + -