The main entry point for the application.
()
| 21 | /// The main entry point for the application. |
| 22 | /// </summary> |
| 23 | [STAThread] |
| 24 | static void Main() |
| 25 | { |
| 26 | Application.EnableVisualStyles(); |
| 27 | Application.SetCompatibleTextRenderingDefault(false); |
| 28 | Application.Run(new MainForm()); |
| 29 | } |
| 30 | } |
| 31 | } |