/**
*
* @author Administrator
* 这是一个登录界面
*/
public class LoginFrame extends javax.swing.JFrame {
private static final long serialVersionUID = 7359199181033703764L;
public LoginFrame() {
initComponents();
this.setTitle("登录界面");
this.setResizable(false);
this.setLocation(400, 200);
}
/**
* This method is called from within the constructor to initialize the form.
* WARNING: Do NOT modify this code. The content of this method is always
* regenerated by the Form Editor.
*/
jLabel1 = new javax.swing.JLabel();
jLabel2 = new javax.swing.JLabel();
jLabel3 = new javax.swing.JLabel();
Name = new javax.swing.JLabel();
PassWord = new javax.swing.JLabel();
UserName = new javax.swing.JTextField();
Password = new javax.swing.JPasswordField();
Login = new javax.swing.JToggleButton();
Regist = new javax.swing.JToggleButton();
Cancel = new javax.swing.JToggleButton();