| 1234567891011121314151617 |
- using System;
- using System.Windows.Forms;
- namespace WindowsFormsApp4
- {
- internal static class Program
- {
- [STAThread]
- static void Main()
- {
- Application.EnableVisualStyles();
- Application.SetCompatibleTextRenderingDefault(false);
- Application.Run(new StartForm());
- }
- }
- }
|