示例#1
0
 private void SignOut(object sender, RoutedEventArgs e)
 {
     Playground.Navigate(typeof(LoginPage));
 }
示例#2
0
 private void ReturnHome(object sender, RoutedEventArgs e)
 {
     Playground.Navigate(typeof(UserPage));
 }
示例#3
0
 private void OpenPlay(object sender, RoutedEventArgs e)
 {
     Playground.Navigate(typeof(Playground), "()");
 }
示例#4
0
 public Landing()
 {
     this.InitializeComponent();
     Playground.Navigate(typeof(UserPage));
 }