J
JJ
I have some custom actions to run after "Resizing a Form". I used the code
below, but my actions are taken before the Form is completely resized. That
is not what I wante. I wanted to Completely Resize my form first and then
run my custom codes. How do I do it? Please Help!!!!!!!!!!
Thanks
private void Form1_Load(object sender, System.EventArgs e)
{
this.Resize += new EventHandler(Form1_Resize);
}
private void Form1_Resize(object sender, System.EventArgs e)
{
//some code here
}
below, but my actions are taken before the Form is completely resized. That
is not what I wante. I wanted to Completely Resize my form first and then
run my custom codes. How do I do it? Please Help!!!!!!!!!!
Thanks
private void Form1_Load(object sender, System.EventArgs e)
{
this.Resize += new EventHandler(Form1_Resize);
}
private void Form1_Resize(object sender, System.EventArgs e)
{
//some code here
}