public FortunaFeed(MatchbookModel model) { Model = model; InitializeComponent(); Timer.Tick += new EventHandler(WatchedEvents_Tick); Timer.Start(); }
public ArbyForm() { InitializeComponent(); Model = new MatchbookModel(); Controller = new MatchbookController(); Controller.Model = Model; Controller.Form = this; Settings = SettingsHelper.GetDefaultSettingsData(); Timer = new UpdateGUITimer(); Scraper = new ScraperTimer(); UpdateSettings(); Timer.Start(); Scraper.Tick += new EventHandler(scraper_Tick); Scraper.Start(); }