The main entry point for the application.
()
| 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 Main()); |
| 18 | } |
| 19 | } |
| 20 | } |