How do I convert a .NET console application to a Winforms or WPF application - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T04:45:40Z http://stackoverflow.com/feeds/question/144701 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/144701/how-do-i-convert-a-net-console-application-to-a-winforms-or-wpf-application 2 How do I convert a .NET console application to a Winforms or WPF application Jon Galloway 2008-09-27T23:13:24Z 2009-03-31T00:58:24Z <p>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?</p> http://stackoverflow.com/questions/144701/how-do-i-convert-a-net-console-application-to-a-winforms-or-wpf-application/144720#144720 10 Answer by AlbertEin for How do I convert a .NET console application to a Winforms or WPF application AlbertEin 2008-09-27T23:21:25Z 2008-09-27T23:22:51Z <p>Just add a new Winform, add the following code to your Main:</p> <pre><code> Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new Form1()); </code></pre> <p>Then right click your project and select properties and change the "Output type" to Windows application and you're done.</p> http://stackoverflow.com/questions/144701/how-do-i-convert-a-net-console-application-to-a-winforms-or-wpf-application/699650#699650 1 Answer by dbruning for How do I convert a .NET console application to a Winforms or WPF application dbruning 2009-03-31T00:58:24Z 2009-03-31T00:58:24Z <p>For completeness - and for other newbs like me - you also need to add:</p> <p>using System.Windows.Forms;</p> <p>... to the top of Program.cs</p>