我将应用程序上传到 windows phone 8 市场,但结果失败,
Name: FBNC VIETNAM
Version: 1.0.0.0
Company Name: FBNC Việt Nam
Windows Phone OS Version: 7.1
Test ID: 717923
它说:
The app directs the user to a web experience without the user input upon launch. The application directs the user to
m.youtube.com/user/FBNCVietnam.
我不明白真正的结果。
我在我的代码中所做的是,我只是在加载时重定向到一些链接:
void MainPage_Loaded(object sender, RoutedEventArgs e)
{
try
{
webbrw.Navigate(new Uri("http://www.youtube.com/FBNCVietnam", UriKind.RelativeOrAbsolute));
webbrw.Navigated += webbrw_Navigated;
webbrw.NavigationFailed += webbrw_NavigationFailed;
}
catch (Exception)
{
MessageBox.Show("Not able to load Application");
} }