我有一个包含方法 LogOut() 的辅助类。这应该是记录用户并将其重定向到 LoginPage。
由于某种原因,它忽略了页面导航。它应该能够在代码执行的任何时候在应用程序的任何地方调用。
public static class AuthHelper
{
public static void Logout()
{
//cleaning some stored credentials here...
//force back to app start
Frame frame = (Frame)Window.Current.Content;
frame.Navigate(typeof(LoginPage));
}