Program.cs 348 B

1234567891011121314151617
  1. using System;
  2. using System.Windows.Forms;
  3. namespace WindowsFormsApp4
  4. {
  5. internal static class Program
  6. {
  7. [STAThread]
  8. static void Main()
  9. {
  10. Application.EnableVisualStyles();
  11. Application.SetCompatibleTextRenderingDefault(false);
  12. Application.Run(new StartForm());
  13. }
  14. }
  15. }