コード例 #1
0
ファイル: KeePassRPCClient.cs プロジェクト: zer0keefie/KeeFox
 void ShowAuthDialog(string securityLevel, string name, string description, string password)
 {
     if (_authForm != null)
     {
         _authForm.Hide();
     }
     _authForm = new KeePassRPC.Forms.AuthForm(this, securityLevel, name, description, password);
     _authForm.Show();
 }
コード例 #2
0
ファイル: KeePassRPCClient.cs プロジェクト: db48x/KeeFox
 void ShowAuthDialog(string securityLevel, string name, string description, string password)
 {
     if (_authForm != null)
         _authForm.Hide();
     _authForm = new KeePassRPC.Forms.AuthForm(this, securityLevel, name, description, password);
     _authForm.Show();
 }