コード例 #1
0
 public static AuthenticationForm CreateInstance(string userName)
 {
     if (m_authenticationForm == null)
     {
         m_authenticationForm = new AuthenticationForm();
     }
     m_userName = userName;
     return(m_authenticationForm);
 }
コード例 #2
0
ファイル: AuthenticationForm.cs プロジェクト: Jusharra/RMS
 public static AuthenticationForm CreateInstance(string userName)
 {
     if (m_authenticationForm == null)
     {
         m_authenticationForm = new AuthenticationForm();
     }
     m_userName = userName;
     return m_authenticationForm;
 }
コード例 #3
0
 private void AuthenticationForm_FormClosed(object sender, FormClosedEventArgs e)
 {
     m_authenticationForm = null;
 }
コード例 #4
0
ファイル: AuthenticationForm.cs プロジェクト: Jusharra/RMS
 private void AuthenticationForm_FormClosed(object sender, FormClosedEventArgs e)
 {
     m_authenticationForm = null;
 }