private void pictureBox1_Click(object sender, EventArgs e)
 {
     if (PasswordGeneratorDialog.ShowKeyGen())
     {
         this.keyTextBox.Text = PasswordGeneratorDialog.LastGeneratedKey;
     }
 }
 private void toolStripButton1_Click(object sender, EventArgs e)
 {
     PasswordGeneratorDialog.ShowKeyGen();
 }
Example #3
0
 static PasswordGeneratorDialog()
 {
     form = new PasswordGeneratorDialog();
 }
Example #4
0
 private void passwordGeneratorToolStripMenuItem_Click(object sender, EventArgs e)
 {
     PasswordGeneratorDialog.ShowKeyGen();
 }