I have a Windows Application. I just don't understand why is it that when i click the Close button, instead of closing the form, it minimizes the whole application.
I don't experience this on my previous runs. It's weird that I am now experiencing it. It's awkward also that I should restore the whole application to begin another transaction.
Below is my code on Close button event.
private void btnClose_Click( object sender, EventArgs e)
{
this.Close();
}
I don't experience this on my previous runs. It's weird that I am now experiencing it. It's awkward also that I should restore the whole application to begin another transaction.
Below is my code on Close button event.
private void btnClose_Click( object sender, EventArgs e)
{
this.Close();
}
Comment