tags:

views:

11

answers:

1

I have a main wpf form that opens a new form. However when that form opens, I'm unable to click back to the original one and use that form. The original form is locked until I close the newly opened form. How do I open both forms so that the previous form can be at the very least moved around and given focus to?

Within the mainForm, there is a method that calls newForm.ShowDialog();

Thanks!

+1  A: 

Use Show() rather than ShowDialog()

500 - Internal Server Error