aboutsummaryrefslogtreecommitdiff
path: root/AleeBrowser/Program.cs
diff options
context:
space:
mode:
authorAlee14 <alee14498@gmail.com>2017-05-08 20:36:19 -0400
committerAlee14 <alee14498@gmail.com>2017-05-08 20:36:19 -0400
commit9269307b901e5548a6d9c5b687051b58363643bb (patch)
treeb2fc8ba68342e91082618b2f1b908203e64659e6 /AleeBrowser/Program.cs
parent4d2498eb783e969e5f132b073341557fc8a367ca (diff)
downloadAleeBrowser-WinForms-9269307b901e5548a6d9c5b687051b58363643bb.tar.gz
AleeBrowser-WinForms-9269307b901e5548a6d9c5b687051b58363643bb.tar.bz2
AleeBrowser-WinForms-9269307b901e5548a6d9c5b687051b58363643bb.zip
Add project files.
Diffstat (limited to 'AleeBrowser/Program.cs')
-rw-r--r--AleeBrowser/Program.cs22
1 files changed, 22 insertions, 0 deletions
diff --git a/AleeBrowser/Program.cs b/AleeBrowser/Program.cs
new file mode 100644
index 0000000..ddab007
--- /dev/null
+++ b/AleeBrowser/Program.cs
@@ -0,0 +1,22 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+
+namespace AleeBrowser
+{
+ 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());
+ }
+ }
+}