kcxx_list.java~1~

来自「这是一个图书和学生信息的管理系统,它可以在数据库里面增加,修改,删除数据来管理图」· JAVA~1~ 代码 · 共 64 行

JAVA~1~
64
字号
package basecode.kkkk;import javax.swing.*;import com.zdsoft.datacenter.*;import com.zdsoft.datastore.*;import com.zdsoft.gui.*;import java.awt.*;/** * <p>Title: </p> * <p>Description: </p> * <p>Copyright: Copyright (c) 2005</p> * <p>Company: </p> * @author not attributable * @version 1.0 */public class KCXX_list extends ASPanel {  JPanel jPanel1 = new JPanel();  JPanel jPanel2 = new JPanel();  JPanel jPanel3 = new JPanel();  JPanel jPanel4 = new JPanel();  JPanel jPanel5 = new JPanel();  BorderLayout borderLayout1 = new BorderLayout();  JPanel jPanel6 = new JPanel();  JPanel jPanel7 = new JPanel();  JPanel jPanel8 = new JPanel();  JLabel jLabel1 = new JLabel();  JButton jButton1 = new JButton();  JButton jButton2 = new JButton();  JButton jButton3 = new JButton();  JScrollPane jScrollPane1 = new JScrollPane();  public KCXX_list() {    try {      jbInit();    }    catch(Exception e) {      e.printStackTrace();    }  }  private void jbInit() throws Exception {    jPanel1.setLayout(borderLayout1);    jLabel1.setText("kkkkkkkkkkkkk");    jButton1.setText("jButton1");    jButton2.setText("jButton2");    jButton3.setText("jButton3");    this.add(jPanel1, BorderLayout.CENTER);    jPanel1.add(jPanel6, BorderLayout.CENTER);    jPanel6.add(jScrollPane1, null);    jPanel1.add(jPanel7, BorderLayout.SOUTH);    jPanel7.add(jButton3, null);    jPanel7.add(jButton2, null);    jPanel7.add(jButton1, null);    jPanel1.add(jPanel8, BorderLayout.NORTH);    jPanel8.add(jLabel1, null);    this.add(jPanel2, BorderLayout.SOUTH);    this.add(jPanel3, BorderLayout.WEST);    this.add(jPanel4, BorderLayout.EAST);    this.add(jPanel5, BorderLayout.NORTH);  }}

⌨️ 快捷键说明

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