示例#1
0
 public StartPageWebBrowser(String pageUrl, String rssUrl)
 {
     this.rssUrl  = rssUrl;
     this.pageUrl = pageUrl;
     this.InitializeDragDrop();
     this.InitializeComponent();
     this.startPageActions = new StartPageActions();
     this.webBrowser.ObjectForScripting       = this.startPageActions;
     this.startPageActions.DocumentCompleted += new EventHandler(WebBrowserDocumentCompleted);
     this.ShowStartPage();
 }
 public StartPageWebBrowser(String pageUrl, String rssUrl)
 {
     this.rssUrl = rssUrl;
     this.pageUrl = pageUrl;
     this.InitializeDragDrop();
     this.InitializeComponent();
     this.startPageActions = new StartPageActions();
     this.recentProjectList = new RecentProjectList();
     this.webBrowser.ObjectForScripting = this.startPageActions;
     this.startPageActions.DocumentCompleted += new EventHandler(WebBrowserDocumentCompleted);
     this.ShowStartPage();
 }