T
tony
Hello!
I have a demo program that have this event handler Form1_Load below.
I just wonder is it any difference if the call to this Form1_Load is removed
and the call to InitGrid() is done
in the constructor instead.
So what is the point having this method Form1_Load if the same can be done
in the constructor?
private void Form1_Load(object sender, System.EventArgs e)
{
InitGrid();
}
//Tony
I have a demo program that have this event handler Form1_Load below.
I just wonder is it any difference if the call to this Form1_Load is removed
and the call to InitGrid() is done
in the constructor instead.
So what is the point having this method Form1_Load if the same can be done
in the constructor?
private void Form1_Load(object sender, System.EventArgs e)
{
InitGrid();
}
//Tony