Mercurial > quickqr
annotate Program.cs @ 0:aca8706f4eec default tip
Initial commit
author | Brad Greco <brad@bgreco.net> |
---|---|
date | Mon, 13 Oct 2014 21:28:19 -0500 |
parents | |
children |
rev | line source |
---|---|
0 | 1 using System; |
2 using System.Collections.Generic; | |
3 using System.Windows.Forms; | |
4 | |
5 namespace QuickQR | |
6 { | |
7 static class Program | |
8 { | |
9 /// <summary> | |
10 /// The main entry point for the application. | |
11 /// </summary> | |
12 [STAThread] | |
13 static void Main() | |
14 { | |
15 Application.EnableVisualStyles(); | |
16 Application.SetCompatibleTextRenderingDefault(false); | |
17 Application.Run(new QRForm()); | |
18 } | |
19 } | |
20 } |