在我的 phonegap 应用程序的 Windows 8 版本中,我试图使用应用程序栏切换到某些页面。下面的代码不会形成一个有效的 URI 来导航。如果有人有解决方法或使此特定代码工作的方法,将不胜感激。
private void ApplicationBarIconButton_Click(object sender, EventArgs e)
{
try
{
if (button.Text == "Logout")
{
IsolatedStorageSettings.ApplicationSettings.Remove("UserName");
IsolatedStorageSettings.ApplicationSettings.Remove("Password");
NavigationService.Navigate(new Uri("/www/index.html", UriKind.Absolute));
}
}
catch (Exception ex)
{
string esfjdlkfj; //placeholder
}
}