Program.cs 611 B

123456789101112131415161718192021222324
  1. using BeatLyrics.Tool.Utils;
  2. using System;
  3. using System.Windows.Forms;
  4. namespace BeatLyrics.Tool
  5. {
  6. internal static class Program
  7. {
  8. /// <summary>
  9. /// 应用程序的主入口点。
  10. /// </summary>
  11. [STAThread]
  12. private static void Main()
  13. {
  14. //var levels = LocalCustomLevelProvider.GetAlLevelInfos();
  15. Application.EnableVisualStyles();
  16. Application.SetCompatibleTextRenderingDefault(false);
  17. Application.Run(new MainForm());
  18. if (OggAudioPlayer.IsPlaying) OggAudioPlayer.Unload();
  19. }
  20. }
  21. }