From a913f006708312fa844d304641b207e9ff730b30 Mon Sep 17 00:00:00 2001 From: Adam Ierymenko Date: Fri, 8 May 2015 11:55:09 -0700 Subject: Windows WebControl based wrapper for web UI. --- windows/WebUIWrapper/Program.cs | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 windows/WebUIWrapper/Program.cs (limited to 'windows/WebUIWrapper/Program.cs') diff --git a/windows/WebUIWrapper/Program.cs b/windows/WebUIWrapper/Program.cs new file mode 100644 index 00000000..3dfdb94f --- /dev/null +++ b/windows/WebUIWrapper/Program.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace WebUIWrapper +{ + static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new Form1()); + } + } +} -- cgit v1.2.3