在Visual Studio 2008 for windows mobile中使用Web浏览器

时间:2010-04-13 06:51:59

标签: c# windows mobile

我在我的app for windows mobile中使用了网页浏览器组件... 我将网址设为"www.google.com"但显示

"page is unavailable,u need to adjust browser settings!!! cannot find server or DNS error"

我是否需要从我的角度进行任何编码 因为我从网络浏览器组件的属性框中设置了网址

1 个答案:

答案 0 :(得分:0)

我找到了答案:

 private void webBrowser1_GotFocus(object sender, EventArgs e)
 {
     webBrowser1.Url = new Uri("http://www.google.com");
     webBrowser1.Navigate(new Uri("http://www.google.com"));
 }

当您第一次与WMDC同步应用程序时,您必须继续进行设置合作。

Check the checkbox for allow the connections and choose DMA

同时选择:

The computer is connected to "The Internet"

你完成了!

但我仍然无法使网站符合屏幕尺寸。任何帮助表示赞赏