vote up 0 vote down star

I am quite new to C#, so forgive my ignorance... I have (currently) 2 forms, one that needs to call the other. In other words, by clicking a certain button in Form1, Form2 needs to "pop up", like a dialog box. I know I have to get a reference in both forms, but I'm not entirely sure how to do this. What is a decent tutorial/beginner site to learn about GUIs in C#?

flag

33% accept rate

1 Answer

vote up 2 vote down check

You can try this:

protected void Button1_Click(object sender, EventArgs e)
{
    Form2 myForm = new Form2();
    myForm.ShowDialog();
}

ShowDialog forces the user to close that window before s/he can access the rest of the application.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.