AdminWindow.java~9~
上传用户: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.     jButton3.addActionListener(new java.awt.event.ActionListener() {
  52.       public void actionPerformed(ActionEvent e) {
  53.         jButton3_actionPerformed(e);
  54.       }
  55.     });
  56.     jButton4.setText("经理登录");
  57.     jButton5.setText("用户管理");
  58.     jButton5.addActionListener(new java.awt.event.ActionListener() {
  59.       public void actionPerformed(ActionEvent e) {
  60.         jButton5_actionPerformed(e);
  61.       }
  62.     });
  63.     jButton6.setText("数据管理");
  64.     this.getContentPane().add(panel1, BorderLayout.CENTER);
  65.     panel1.add(jButton1,  new XYConstraints(0, 0, -1, 35));
  66.     panel1.add(jButton4,    new XYConstraints(281, 1, 100, 33));
  67.     panel1.add(jButton5,    new XYConstraints(375, 2, 92, 32));
  68.     panel1.add(jButton6,  new XYConstraints(467, 1, 92, 34));
  69.     panel1.add(jButton3, new XYConstraints(182, 1, 98, 33));
  70.     panel1.add(jButton2,   new XYConstraints(84, 1, 100, 33));
  71.   }
  72. //userManagement 用户管理()涉及到用户的增删改
  73.   void jButton5_actionPerformed(ActionEvent e) {
  74.     UserManagement userManagement = new UserManagement() ;
  75.     Dimension dlgSize = userManagement.getPreferredSize();
  76.     Dimension frmSize = getSize();
  77.     Point loc = getLocation();
  78.     userManagement.setLocation((frmSize.width - dlgSize.width) / 2 + loc.x, (frmSize.height - dlgSize.height) / 2 + loc.y);
  79.     userManagement.setModal(true);
  80.     userManagement.pack();
  81.     userManagement.show();
  82.   }
  83. //admin作为顾客登录
  84.   void jButton1_actionPerformed(ActionEvent e) {
  85.     CustomerWindow customerWindow =new CustomerWindow() ;
  86.     Dimension dlgSize = customerWindow.getPreferredSize();
  87.     Dimension frmSize = getSize();
  88.     Point loc = getLocation();
  89.     customerWindow.setLocation((frmSize.width - dlgSize.width) / 2 + loc.x, (frmSize.height - dlgSize.height) / 2 + loc.y);
  90.     customerWindow.setModal(true);
  91.     customerWindow.pack();
  92.     customerWindow.show();
  93.   }
  94.   //admin作为采购员登录
  95.   void jButton2_actionPerformed(ActionEvent e) {
  96.     BuyerWindow buyerWindow =new BuyerWindow() ;
  97.     Dimension dlgSize = buyerWindow.getPreferredSize();
  98.     Dimension frmSize = getSize();
  99.     Point loc = getLocation();
  100.     buyerWindow.setLocation((frmSize.width - dlgSize.width) / 2 + loc.x, (frmSize.height - dlgSize.height) / 2 + loc.y);
  101.     buyerWindow.setModal(true);
  102.     buyerWindow.pack();
  103.     buyerWindow.show();
  104.   }
  105.  //admin作为销售员登录
  106.   void jButton3_actionPerformed(ActionEvent e) {
  107.     SalesWindow salesWindow =new SalesWindow() ;
  108.     Dimension dlgSize = salesWindow.getPreferredSize();
  109.     Dimension frmSize = getSize();
  110.     Point loc = getLocation();
  111.     salesWindow.setLocation((frmSize.width - dlgSize.width) / 2 + loc.x, (frmSize.height - dlgSize.height) / 2 + loc.y);
  112.     salesWindow.setModal(true);
  113.     salesWindow.pack();
  114.     salesWindow.show();
  115.   }
  116. }