황총: GeckoWebBrowser 멀티 윈도우 독립 쿠키

4177 단어
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;
using System.IO;
using System.Runtime.InteropServices;

namespace   Cookie
{
    public partial class Form1 : Form
    {
        static private string xulrunnerPath = Application.StartupPath + "\\xulrunner";

        public Form1()
        {
            InitializeComponent();

            string profileDir = DateTime.Now.ToString("yyyyMMddHHmmss");
            string directory = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), Path.Combine("Geckofx", profileDir));
if (!Directory.Exists(directory))
                Directory.CreateDirectory(directory);
            Gecko.Xpcom.ProfileDirectory = directory;
            
            Gecko.Xpcom.Initialize(xulrunnerPath);
            GeckoPreferences.User["gfx.font_rendering.graphite.enabled"] = true;
            Gecko.CertOverrideService.GetService().ValidityOverride += geckoWebBrowser1_ValidityOverride;

            gwb.Navigate("http://baidu.com");
        }

        private void geckoWebBrowser1_ValidityOverride(object sender, Gecko.Events.CertOverrideEventArgs e)
        {
            e.OverrideResult = Gecko.CertOverride.Mismatch | Gecko.CertOverride.Time | Gecko.CertOverride.Untrusted;
            e.Temporary = true;
            e.Handled = true;
        }
    }
}

좋은 웹페이지 즐겨찾기