コード例 #1
0
        static void Main()
        {
            WoWTorrent wtorrent = new WoWTorrent();

            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new MainWindow(wtorrent));
            wtorrent.Stop();
        }
コード例 #2
0
 private void MainWindowClosing(object sender, EventArgs e)
 {
     updaterThread.Abort();
     wtorrent.Stop();
 }