diff options
| author | Alee14 <alee14498@gmail.com> | 2017-05-08 20:36:19 -0400 |
|---|---|---|
| committer | Alee14 <alee14498@gmail.com> | 2017-05-08 20:36:19 -0400 |
| commit | 9269307b901e5548a6d9c5b687051b58363643bb (patch) | |
| tree | b2fc8ba68342e91082618b2f1b908203e64659e6 /AleeBrowser/Program.cs | |
| parent | 4d2498eb783e969e5f132b073341557fc8a367ca (diff) | |
| download | AleeBrowser-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.cs | 22 |
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()); + } + } +} |
