diff options
| author | Adam Ierymenko <adam.ierymenko@zerotier.com> | 2015-05-08 11:55:09 -0700 |
|---|---|---|
| committer | Adam Ierymenko <adam.ierymenko@zerotier.com> | 2015-05-08 11:55:09 -0700 |
| commit | a913f006708312fa844d304641b207e9ff730b30 (patch) | |
| tree | 87ab7921d00bfe5680ad71664b608d3e3e985cd9 /windows/WebUIWrapper/Program.cs | |
| parent | b1164ed181b0ffde3c664cffc3513b203429d2f7 (diff) | |
| download | infinitytier-a913f006708312fa844d304641b207e9ff730b30.tar.gz infinitytier-a913f006708312fa844d304641b207e9ff730b30.zip | |
Windows WebControl based wrapper for web UI.
Diffstat (limited to 'windows/WebUIWrapper/Program.cs')
| -rw-r--r-- | windows/WebUIWrapper/Program.cs | 22 |
1 files changed, 22 insertions, 0 deletions
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 + { + /// <summary> + /// The main entry point for the application. + /// </summary> + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new Form1()); + } + } +} |
