show/hide this revision's text 2 deleted 3 characters in body

Just add a new Winform, add the following code to your Main:

    Application.EnableVisualStyles();
    Application.SetCompatibleTextRenderingDefault(false);
    Application.Run(new Form1());

Then right click to your proyect project and select properties and change the "Output type" to Windows application and you're done.

show/hide this revision's text 1

Just add a new Winform, add the following code to your Main:

    Application.EnableVisualStyles();
    Application.SetCompatibleTextRenderingDefault(false);
    Application.Run(new Form1());

Then right click to your proyect and select properties and change the "Output type" to Windows application and you're done.