0
有沒有辦法檢測出人點擊裏面WebBrowser1一個鏈接,然後我可以做vb.net web瀏覽器鏈接到默認Web瀏覽器
Process.Start(TheURL)
,然後返回行動false,所以它不單擊web瀏覽器對象中的鏈接,然後單擊該過程。
有沒有辦法檢測出人點擊裏面WebBrowser1一個鏈接,然後我可以做vb.net web瀏覽器鏈接到默認Web瀏覽器
Process.Start(TheURL)
,然後返回行動false,所以它不單擊web瀏覽器對象中的鏈接,然後單擊該過程。
這裏亞去:
private void WebBrowser_Navigating(object sender, WebBrowserNavigatingEventArgs e)
{
e.Cancel = true; // Cancel the event to avoid default behavior
System.Diagnostics.Process.Start(e.Url.ToString()); // Open the link in the default browser
}
編輯:咩,我有幾分鐘。這裏你再去:
Private Sub WebBrowser1_Navigating(ByVal sender As System.Object, ByVal e As System.Windows.Forms.WebBrowserNavigatingEventArgs) Handles WebBrowser1.Navigating
e.Cancel = True 'Cancel the event to avoid default behavior
System.Diagnostics.Process.Start(e.Url.ToString()) 'Open the link in the default browser
End Sub
Ick,對不起,我沒有看到帖子上的VB標籤。如果你需要翻譯,我可以做到這一點,但大多數應該複製非常無痛。 – 2011-03-09 23:23:02
非常感謝,它工作得很好。 – Ugleh 2011-03-11 05:12:15