From c20400ae41f6f545e3cb504a901ee25c36ab1fe9 Mon Sep 17 00:00:00 2001 From: emkael Date: Fri, 12 Oct 2018 20:21:32 +0200 Subject: Initial commit: - basic UI --- kurier/Program.cs | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 kurier/Program.cs (limited to 'kurier/Program.cs') diff --git a/kurier/Program.cs b/kurier/Program.cs new file mode 100644 index 0000000..2114d67 --- /dev/null +++ b/kurier/Program.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.Windows.Forms; + +namespace kurier +{ + 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