コード例 #1
0
 public CustomTab()
 {
     textbox = new RichTextBox();
     this.Controls.Add(textbox);
     textbox.Dock = DockStyle.Fill;
     history      = new BrowserHistory();
     history.Urls = new List <string>();
 }
コード例 #2
0
ファイル: GUI.cs プロジェクト: Gokimster/WebBrowser
 public GUI()
 {
     InitializeComponent();
     favs     = new Favourites();
     bHistory = new BrowserHistory();
     hp       = new HomePage();
     populateFavourites();
     populateHistory();
     initNewTab();
 }
コード例 #3
0
ファイル: GUI.cs プロジェクト: Gokimster/WebBrowser
 public GUI()
 {
     InitializeComponent();
     favs = new Favourites();
     bHistory = new BrowserHistory();
     hp = new HomePage();
     populateFavourites();
     populateHistory();
     initNewTab();
 }