在winform程式中,要在程式中展示一個web頁面,最常用的就是.net自帶的webbrowser,但是大家都知道它是IE,也知道IE是有多麼強(er)大(bi)。而且微軟已經宣佈了IE的死亡。。。默哀1秒鐘,繼續正文
那麼如何使用firefox呢?只需兩步:
1、新增引用:Geckofx-Core、Geckofx-Winforms;圖1
2、把xulrunner放在你專案的bin目錄下;圖2
圖1
圖2
上面兩個資源的下載地址:https://bitbucket.org/geckofx/geckofx-33.0/downloads
ftp://ftp.mozilla.org/pub/xulrunner/releases/33.0/runtimes/
但是要注意一點:geckofx的版本要和xulrunner的版本對應,不然會有問題。xulrunner是firefox官網提供的,有最新版本,但是geckofx版本相對落後一些,但是也更新到了33.0版本,對應firefox的釋出時間是2014年10月份,應該也夠用了。
當把前面的資源配置好後,接下來就是呼叫api的活了,非常簡單,上一段簡單的程式碼。
新建一個winform程式,然後在預設的form1.cs檔案中加入以下程式碼。
1 public partial class Form1 : Form 2 { 3 private readonly string xulrunnerPath = Application.StartupPath + "/xulrunner"; 4 private const string testUrl = "https://www.alipay.com/"; 5 private GeckoWebBrowser Browser; 6 public Form1() 7 { 8 InitializeComponent(); 9 10 Xpcom.Initialize(xulrunnerPath); 11 12 13 } 14 15 private void Form1_Load(object sender, EventArgs e) 16 { 17 Browser = new GeckoWebBrowser(); 18 Browser.Parent = this; 19 Browser.Dock = DockStyle.Fill; 20 Browser.Navigate(testUrl); 21 } 22 }
OK,執行專案你將會看到支付寶的首頁。