예제 #1
0
파일: FortunaFeed.cs 프로젝트: srdecny/Arby
 public FortunaFeed(MatchbookModel model)
 {
     Model = model;
     InitializeComponent();
     Timer.Tick += new EventHandler(WatchedEvents_Tick);
     Timer.Start();
 }
예제 #2
0
파일: ArbyForm.cs 프로젝트: srdecny/Arby
        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();
        }