static void Main() { WoWTorrent wtorrent = new WoWTorrent(); Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new MainWindow(wtorrent)); wtorrent.Stop(); }
public MainWindow(WoWTorrent torrent) { updateValDelegate = new UpdateValuesDel(UpdateValues); this.FormClosing += MainWindowClosing; wtorrent = torrent; InitializeComponent(); initPlayButton(); initTopBar(); initDownloadBar(); initOptionMenuButton(); CreateUpdaterThread(); }