Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想做一个非常基本的网站重新打包为 WP8 应用程序,类似于微软在这里所做的。
我在 Visual Studio Express for Windows Phone 中创建什么样的项目?开发这种应用程序的总体策略是什么?
您应该选择“Windows Phone HTML5 App”模板。它基本上使用WebBrowser控件来打开网站。模板还具有带有后退、前进和刷新按钮的应用程序栏。
WebBrowser
创建应用程序时,转到MainPage.xaml.cs并将MainUri字符串更改为网站名称并UriKind用作UriKind.RelativeOrAbsolute事件Browser_Loaded。
MainPage.xaml.cs
MainUri
UriKind
UriKind.RelativeOrAbsolute
Browser_Loaded