0
我的代碼: -來自內部應用程序的鏈接被移動到ie,但該鏈接不應導航到瀏覽器,即內部應用程序。
void webBrowser1_Navigating(object sender, NavigatingEventArgs e)
{
if ((textBox1.Text.Contains(".jpg")) && (textBox1.Text.Contains(".png")))
{
e.cancel=true; //browser inside application should not be navigated but browser is navigating
WebBrowserTask webBrowserTask = new WebBrowserTask();`
webBrowserTask.Uri = new Uri(textBox1.Text, UriKind.RelativeOrAbsolute);
webBrowserTask.Show();
}
}
我的問題是如何從導航阻止瀏覽器?
它不工作,我需要的WindowsPhone 7實施 – user2176902