예제 #1
0
 private void webKitBrowser1_Navigating(object sender, WebKitBrowserNavigatingEventArgs e)
 {
     urlBar.Text = e.Url.ToString();
 }
예제 #2
0
파일: MainForm.cs 프로젝트: thinhils/Nikita
 void webKitBrowser1_Navigating(object sender, WebKitBrowserNavigatingEventArgs e)
 {
     // here you can interfere with the WebKitBrowser object before it attempts to load a web page
     // You can cancel the navigation progress and get the Url and TargetFrameName
 }
        private void wkb_navigating(object sender, WebKitBrowserNavigatingEventArgs e)
        {
            string param1 = HttpUtility.ParseQueryString(e.Url.ToString()).Get(0);

            MessageBox.Show(param1.ToString());
        }