You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
498 B

  1. using System;
  2. using System.Windows.Forms;
  3. namespace GroupBuyParser
  4. {
  5. static class Program
  6. {
  7. /// <summary>
  8. /// The main entry point for the application.
  9. /// </summary>
  10. [STAThread]
  11. static void Main()
  12. {
  13. Application.SetHighDpiMode(HighDpiMode.SystemAware);
  14. Application.EnableVisualStyles();
  15. Application.SetCompatibleTextRenderingDefault(false);
  16. Application.Run(new MainForm());
  17. }
  18. }
  19. }