I am trying to do the same thing as is described in the following thread (in a C# winforms app):
How to open a new independent form?
And is answered with this: https://stackoverflow.com/a/14902079/5342320
The problem is I can't find this setting in Visual Studio Community 2015.
The only Microsoft documentation I find for this is the following:
https://msdn.microsoft.com/en-us/library/vstudio/0hzfysdc(v=vs.100).aspx
So it appears this only exists in VB projects. I found the setting when I created a VB winforms project. Is there a way to do something similar in a C# project?
As a workaround I've used a modal form instead:
frmMyForm frm = new frmMyForm();
frm.ShowDialog();
But this makes it so that I can't close the parent form before the new form has been closed. What I want is to be able to close the parent form after opening the new form, without closing the whole application.