ManagementWindow.java~1~
上传用户:liming9091
上传日期:2014-10-27
资源大小:3376k
文件大小:2k
源码类别:

Java编程

开发平台:

Java

  1. package uml_gaokai;
  2. import java.awt.*;
  3. import javax.swing.*;
  4. import com.borland.dx.sql.dataset.*;
  5. import com.borland.dbswing.*;
  6. import com.borland.jbcl.layout.*;
  7. /**
  8.  * <p>Title: </p>
  9.  * <p>Description: </p>
  10.  * <p>Copyright: Copyright (c) 2003</p>
  11.  * <p>Company: </p>
  12.  * @author unascribed
  13.  * @version 1.0
  14.  */
  15. public class ManagementWindow extends JDialog {
  16.   private Database database1 = new Database();
  17.   private QueryDataSet queryDataSet1 = new QueryDataSet();
  18.   private JPanel jPanel1 = new JPanel();
  19.   private JdbTable jdbTable1 = new JdbTable();
  20.   private XYLayout xYLayout1 = new XYLayout();
  21.   private JButton jButton1 = new JButton();
  22.   private JButton jButton2 = new JButton();
  23.   private JButton jButton3 = new JButton();
  24.   private QueryDataSet queryDataSet2 = new QueryDataSet();
  25.   public ManagementWindow(Frame frame, String title, boolean modal) {
  26.     super(frame, title, modal);
  27.     try {
  28.       jbInit();
  29.       pack();
  30.     }
  31.     catch(Exception ex) {
  32.       ex.printStackTrace();
  33.     }
  34.   }
  35.   public ManagementWindow() {
  36.     this(null, "", false);
  37.   }
  38.   private void jbInit() throws Exception {
  39.     jPanel1.setLayout(xYLayout1);
  40.     jButton1.setText("查看进货信息");
  41.     jButton2.setText("查看销售信息");
  42.     jButton3.setText("退出");
  43.     database1.setDatabaseName("");
  44.     this.getContentPane().add(jPanel1, BorderLayout.CENTER);
  45.     jPanel1.add(jdbTable1,        new XYConstraints(2, 2, 332, 187));
  46.     jPanel1.add(jButton1,     new XYConstraints(5, 208, 109, 20));
  47.     jPanel1.add(jButton3,     new XYConstraints(255, 208, 73, 20));
  48.     jPanel1.add(jButton2,  new XYConstraints(123, 208, 106, 20));
  49.   }
  50. }