Program.cs 516 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Windows.Forms;
  5. namespace LYFZ.ComponentLibrary
  6. {
  7. static class Program
  8. {
  9. /// <summary>
  10. /// 应用程序的主入口点。
  11. /// </summary>
  12. [STAThread]
  13. static void Main()
  14. {
  15. //Application.EnableVisualStyles();
  16. //Application.SetCompatibleTextRenderingDefault(false);
  17. //Application.Run(new BaseForm());
  18. }
  19. }
  20. }