Create new Windows Form Demo app.

This commit is contained in:
Joel Wetzell
2020-06-13 17:27:32 -05:00
parent 4ecc692fec
commit 1670326789
7 changed files with 398 additions and 28 deletions
+23
View File
@@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace QSharpDemoApp
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetHighDpiMode(HighDpiMode.SystemAware);
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}