Beispiel #1
0
 private void m_btnLogin_Click(object sender, EventArgs e)
 {
     UserAccount  = new Account(m_txtName.Text, m_txtPassword.Text, 3000);
     this.Hide();
 }
Beispiel #2
0
 public void Reset()
 {
     m_txtPassword.Text = string.Empty;
     m_txtName.Text = string.Empty;
     UserAccount = null;
 }