Fixed "Password Generator" window blinking in upper left corner of the screen

This commit is contained in:
Alexander 2019-11-11 20:54:03 +02:00
parent 9316ab343a
commit 5b0bd204df
2 changed files with 2 additions and 5 deletions

View file

@ -150,9 +150,8 @@ private void InitializeComponent()
this.Name = "PasswordGeneratorFrom";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
this.Text = "Password Generator";
this.Shown += new System.EventHandler(this.PasswordGeneratorFrom_Shown);
this.Load += new System.EventHandler(this.PasswordGeneratorFrom_Load);
this.ResumeLayout(false);
this.PerformLayout();

View file

@ -67,11 +67,9 @@ private void PasswordLengthTextBox_KeyPress(object sender, KeyPressEventArgs e)
}
}
private void PasswordGeneratorFrom_Shown(object sender, EventArgs e)
private void PasswordGeneratorFrom_Load(object sender, EventArgs e)
{
CenterToParent();
}
}
}