private void btnlogIn_Click(object sender, EventArgs e) { if (AccountInfoManager.LogIn(this.cboAccount.Text, this.txtPassword.Text)) { this.DialogResult = System.Windows.Forms.DialogResult.OK; } }
private void panel2_MouseClick(object sender, MouseEventArgs e) { if (++_clickCount >= 2) { //1.0.160818.0800 修改懶人登入方法 if (AccountInfoManager.LogIn(SystemDefine.DEVELOPER_USER_NAME, SystemDefine.DEVELOPER_USER_PASSWORD)) { this.DialogResult = System.Windows.Forms.DialogResult.OK; } } }