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.
