Ejemplo n.º 1
0
 private static void IsPaneOpenChanged(AppView o, IPropertyChangedArgs<bool> args)
 {
     o.splitView.IsPaneOpen = args.NewValue;
 }
Ejemplo n.º 2
0
 private static void UpperSourceChanged(AppView o, IPropertyChangedArgs<object> args)
 {
     o.upperView.ItemsSource = args.NewValue;
 }
Ejemplo n.º 3
0
 private static void FrameContentChanged(AppView o, IPropertyChangedArgs<object> args)
 {
     o.frame.Content = args.NewValue;
 }