I am new to windows forms and trying to use form_load event. See code bellow.
private void Form1_Load(Object sender, System.EventArgs e)
{
MessageBox.Show("TEST");
}
When the window's form is showing up, nothing is happening.
I would appreciate your suggestions.
private void Form1_Load(Object sender, System.EventArgs e)
{
MessageBox.Show("TEST");
}
When the window's form is showing up, nothing is happening.
I would appreciate your suggestions.