- Visual C++源码
- Visual Basic源码
- C++ Builder源码
- Java源码
- Delphi源码
- C/C++源码
- PHP源码
- Perl源码
- Python源码
- Asm源码
- Pascal源码
- Borland C++源码
- Others源码
- SQL源码
- VBScript源码
- JavaScript源码
- ASP/ASPX源码
- C#源码
- Flash/ActionScript源码
- matlab源码
- PowerBuilder源码
- LabView源码
- Flex源码
- MathCAD源码
- VBA源码
- IDL源码
- Lisp/Scheme源码
- VHDL源码
- Objective-C源码
- Fortran源码
- tcl/tk源码
- QT源码
AdminWindow.java~1~
资源名称:Java.rar [点击查看]
上传用户:liming9091
上传日期:2014-10-27
资源大小:3376k
文件大小:1k
源码类别:
Java编程
开发平台:
Java
- package uml_gaokai;
- import java.awt.*;
- import javax.swing.*;
- import com.borland.jbcl.layout.*;
- /**
- * <p>Title: </p>
- * <p>Description: </p>
- * <p>Copyright: Copyright (c) 2003</p>
- * <p>Company: </p>
- * @author unascribed
- * @version 1.0
- */
- public class LoginMainWindow extends JDialog {
- private JPanel panel1 = new JPanel();
- private XYLayout xYLayout1 = new XYLayout();
- private JButton jButton1 = new JButton();
- private JButton jButton2 = new JButton();
- private JButton jButton3 = new JButton();
- private JButton jButton4 = new JButton();
- private JButton jButton5 = new JButton();
- public LoginMainWindow(Frame frame, String title, boolean modal) {
- super(frame, title, modal);
- try {
- jbInit();
- pack();
- }
- catch(Exception ex) {
- ex.printStackTrace();
- }
- }
- public LoginMainWindow() {
- this(null, "", false);
- }
- private void jbInit() throws Exception {
- panel1.setLayout(xYLayout1);
- jButton1.setText("顾客登录");
- jButton2.setText("采购员登录");
- jButton3.setText("销售员登录");
- jButton4.setText("经理登录");
- jButton5.setText("用户管理");
- this.getContentPane().add(panel1, BorderLayout.CENTER);
- panel1.add(jButton1, new XYConstraints(0, 0, -1, 33));
- panel1.add(jButton2, new XYConstraints(83, 1, 100, 32));
- panel1.add(jButton3, new XYConstraints(183, 0, 98, 33));
- panel1.add(jButton4, new XYConstraints(281, 1, 100, 33));
- panel1.add(jButton5, new XYConstraints(375, 2, 92, 32));
- }
- }