I frequently start with a simple console application to try out an idea, then create a new GUI based project and copy the code in. Is there a better way? Can I convert my existing console application easily?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Just add a new Winform, add the following code to your Main:
Then right click your project and select properties and change the "Output type" to Windows application and you're done. EDIT : In VS2008 the property to change is Application type
|
||||
|
For completeness - and for other newbs like me - you also need to add: using System.Windows.Forms; ... to the top of Program.cs |
|||
|
|
