I am trying to resize form1 aka (CipherForm) while the program is running.
I have Visual Studios 2003.
I have tried
What I want in the end is during an event the window will resize and exiting an event it will resize back.
I have Visual Studios 2003.
I have tried
Code:
private void CipherForm_Load(object sender, System.EventArgs e)
{
CipherForm h = new CipherForm();
h.Size = new Size(500, 500);
}
Comment