How do I convert a .NET console application to a Winforms or WPF application - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T04:45:40Zhttp://stackoverflow.com/feeds/question/144701http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/144701/how-do-i-convert-a-net-console-application-to-a-winforms-or-wpf-application2How do I convert a .NET console application to a Winforms or WPF applicationJon Galloway2008-09-27T23:13:24Z2009-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#14472010Answer by AlbertEin for How do I convert a .NET console application to a Winforms or WPF applicationAlbertEin2008-09-27T23:21:25Z2008-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#6996501Answer by dbruning for How do I convert a .NET console application to a Winforms or WPF applicationdbruning2009-03-31T00:58:24Z2009-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>