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

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