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