我正在创建一个使用 Component GeckoFX 22 的应用程序 C#.Net 框架 4.0,但我没有开始工作..我做了所有参考,好吧..我在 x86 上运行,所有这些都根据他们的要求在项目中 ..
我的项目:https://mega.co.nz/#!KMZgGQ7S!RDs0-AHjHXiSiyvfVAyZQk0Si9Aq2InA-dbMV2BpzoA *删除http://后面的空格
geckofx22 = https://bitbucket.org/geckofx/geckofx-22.0
*去掉http://后面的空格
xulrunner = http://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/22.0/runtimes/xulrunner-22.0.en-US.win32.zip *去掉http://后面的空格
见下面的代码:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using Gecko;
namespace Browser_GeckoFx22
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
Xpcom.Initialize(Environment.CurrentDirectory + "\\xulrunner");
}
private void Form1_Load(object sender, EventArgs e)
{
geckoWebBrowser1.Navigate("www.google.com");
}
}
}
图片项目:http://postimg.org/image/cekuka9nn/ *去掉http://后面的空格
在我运行时看到错误:http://postimg.org/image/usvdo9lyb/ *删除 http:// 之后的空格
谢谢