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

Java编程

开发平台:

Java

  1. package uml_gaokai;
  2. import java.awt.*;
  3. import javax.swing.*;
  4. import com.borland.jbcl.layout.*;
  5. import java.awt.event.*;
  6. /**
  7.  * <p>Title: </p>
  8.  * <p>Description: </p>
  9.  * <p>Copyright: Copyright (c) 2003</p>
  10.  * <p>Company: </p>
  11.  * @author unascribed
  12.  * @version 1.0
  13.  */
  14. public class AdminWindow extends JDialog {
  15.   private JPanel panel1 = new JPanel();
  16.   private XYLayout xYLayout1 = new XYLayout();
  17.   private JButton jButton1 = new JButton();
  18.   private JButton jButton2 = new JButton();
  19.   private JButton jButton3 = new JButton();
  20.   private JButton jButton4 = new JButton();
  21.   private JButton jButton5 = new JButton();
  22.   private JButton jButton6 = new JButton();
  23.   public AdminWindow(Frame frame, String title, boolean modal) {
  24.     super(frame, title, modal);
  25.     try {
  26.       jbInit();
  27.       pack();
  28.     }
  29.     catch(Exception ex) {
  30.       ex.printStackTrace();
  31.     }
  32.   }
  33.   public AdminWindow() {
  34.     this(null, "", false);
  35.   }
  36.   private void jbInit() throws Exception {
  37.     panel1.setLayout(xYLayout1);
  38.     jButton1.setText("顾客登录");
  39.     jButton1.addActionListener(new java.awt.event.ActionListener() {
  40.       public void actionPerformed(ActionEvent e) {
  41.         jButton1_actionPerformed(e);
  42.       }
  43.     });
  44.     jButton2.setText("采购员登录");
  45.     jButton2.addActionListener(new java.awt.event.ActionListener() {
  46.       public void actionPerformed(ActionEvent e) {
  47.         jButton2_actionPerformed(e);
  48.       }
  49.     });
  50.     jButton3.setText("销售员登录");
  51.     jButton4.setText("经理登录");
  52.     jButton5.setText("用户管理");
  53.     jButton5.addActionListener(new java.awt.event.ActionListener() {
  54.       public void actionPerformed(ActionEvent e) {
  55.         jButton5_actionPerformed(e);
  56.       }
  57.     });
  58.     jButton6.setText("数据管理");
  59.     this.getContentPane().add(panel1, BorderLayout.CENTER);
  60.     panel1.add(jButton1,  new XYConstraints(0, 0, -1, 35));
  61.     panel1.add(jButton4,    new XYConstraints(281, 1, 100, 33));
  62.     panel1.add(jButton5,    new XYConstraints(375, 2, 92, 32));
  63.     panel1.add(jButton6,  new XYConstraints(467, 1, 92, 34));
  64.     panel1.add(jButton3, new XYConstraints(182, 1, 98, 33));
  65.     panel1.add(jButton2,   new XYConstraints(84, 1, 100, 33));
  66.   }
  67. //userManagement 用户管理()涉及到用户的增删改
  68.   void jButton5_actionPerformed(ActionEvent e) {
  69.     UserManagement userManagement = new UserManagement() ;
  70.     Dimension dlgSize = userManagement.getPreferredSize();
  71.     Dimension frmSize = getSize();
  72.     Point loc = getLocation();
  73.     userManagement.setLocation((frmSize.width - dlgSize.width) / 2 + loc.x, (frmSize.height - dlgSize.height) / 2 + loc.y);
  74.     userManagement.setModal(true);
  75.     userManagement.pack();
  76.     userManagement.show();
  77.   }
  78. //admin作为顾客登录
  79.   void jButton1_actionPerformed(ActionEvent e) {
  80.     CustomerWindow customerWindow =new CustomerWindow() ;
  81.     Dimension dlgSize = customerWindow.getPreferredSize();
  82.     Dimension frmSize = getSize();
  83.     Point loc = getLocation();
  84.     customerWindow.setLocation((frmSize.width - dlgSize.width) / 2 + loc.x, (frmSize.height - dlgSize.height) / 2 + loc.y);
  85.     customerWindow.setModal(true);
  86.     customerWindow.pack();
  87.     customerWindow.show();
  88.   }
  89.   //admin作为采购员登录
  90.   void jButton2_actionPerformed(ActionEvent e) {
  91.     BuyerWindow buyerWindow =new BuyerWindow() ;
  92.     Dimension dlgSize = buyerWindow.getPreferredSize();
  93.     Dimension frmSize = getSize();
  94.     Point loc = getLocation();
  95.     buyerWindow.setLocation((frmSize.width - dlgSize.width) / 2 + loc.x, (frmSize.height - dlgSize.height) / 2 + loc.y);
  96.     buyerWindow.setModal(true);
  97.     buyerWindow.pack();
  98.     buyerWindow.show();
  99.   }
  100. }