usermaintainframe.java~2~
字号:
package parkingsystem;
import java.awt.*;
import javax.swing.*;
import java.awt.BorderLayout;
import com.borland.jbcl.layout.XYLayout;
import com.borland.jbcl.layout.*;
import com.borland.dbswing.JdbNavToolBar;
import com.borland.dbswing.JdbNavField;
import com.borland.dbswing.TableScrollPane;
import com.borland.dbswing.JdbTable;
import com.borland.dbswing.JdbStatusLabel;
public class UserMaintainFrame
extends JFrame {
BorderLayout borderLayout1 = new BorderLayout();
JPanel jPanel1 = new JPanel();
XYLayout xYLayout1 = new XYLayout();
JPanel jPanel2 = new JPanel();
XYLayout xYLayout2 = new XYLayout();
JdbNavToolBar jdbNavToolBar1 = new JdbNavToolBar();
JdbNavField jdbNavField1 = new JdbNavField();
JLabel jLabel1 = new JLabel();
JPanel jPanel3 = new JPanel();
TableScrollPane tableScrollPane1 = new TableScrollPane();
BorderLayout borderLayout2 = new BorderLayout();
JdbTable jdbTable1 = new JdbTable();
JdbStatusLabel jdbStatusLabel1 = new JdbStatusLabel();
JButton jButton1 = new JButton();
JButton jButton2 = new JButton();
public UserMaintainFrame() {
try {
jbInit();
}
catch (Exception exception) {
exception.printStackTrace();
}
}
private void jbInit() throws Exception {
getContentPane().setLayout(borderLayout1);
this.getContentPane().add(jPanel1, java.awt.BorderLayout.CENTER);
jPanel2.setLayout(xYLayout2);
jdbNavToolBar1.setButtonStateInsert(JdbNavToolBar.HIDDEN);
jdbNavToolBar1.setButtonStateDelete(JdbNavToolBar.HIDDEN);
jdbNavToolBar1.setButtonStateCancel(JdbNavToolBar.HIDDEN);
jdbNavToolBar1.setButtonStateDitto(JdbNavToolBar.HIDDEN);
jdbNavToolBar1.setButtonStateSave(JdbNavToolBar.HIDDEN);
jdbNavField1.setText("jdbNavField1");
jLabel1.setText("Find:");
jPanel3.setLayout(borderLayout2);
jdbStatusLabel1.setText("jdbStatusLabel1");
jButton1.setText("jButton1");
jButton2.setText("jButton2");
jPanel1.add(jPanel2, new XYConstraints(2, 0, 396, 42));
jPanel2.add(jdbNavToolBar1, new XYConstraints(2, 4, 213, 37));
jPanel2.add(jLabel1, new XYConstraints(228, 15, 49, 20));
jPanel2.add(jdbNavField1, new XYConstraints(283, 13, 100, 23));
jPanel1.add(jPanel3, new XYConstraints(1, 43, 396, 166));
jPanel3.add(tableScrollPane1, java.awt.BorderLayout.CENTER);
jPanel1.add(jdbStatusLabel1, new XYConstraints(1, 212, 395, 27));
jPanel1.add(jButton1, new XYConstraints(44, 250, 118, 27));
jPanel1.add(jButton2, new XYConstraints(220, 250, 118, 27));
tableScrollPane1.getViewport().add(jdbTable1);
jPanel1.setLayout(xYLayout1);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -