Exemplo n.º 1
0
 NavigationView FindPlatformFlyoutView(WFrameworkElement aView) =>
 aView.GetParentOfType <NavigationView>();
Exemplo n.º 2
0
 public static void SetTop(Microsoft.UI.Xaml.FrameworkElement element, double value) => element.SetValue(TopProperty, value);
Exemplo n.º 3
0
 partial void DisconnectingHandler(PlatformView platformView)
 {
     platformView.GotFocus  -= NativeViewGotFocus;
     platformView.LostFocus -= NativeViewLostFocus;
 }
Exemplo n.º 4
0
 public static double GetTop(Microsoft.UI.Xaml.FrameworkElement element) => (double)element.GetValue(TopProperty);
Exemplo n.º 5
0
 public static void SetColumnSpan(Microsoft.UI.Xaml.FrameworkElement element, int value) => element.SetValue(ColumnSpanProperty, value);
Exemplo n.º 6
0
 public static int GetColumnSpan(Microsoft.UI.Xaml.FrameworkElement element) => (int)element.GetValue(ColumnSpanProperty);
Exemplo n.º 7
0
 public static void SetRow(Microsoft.UI.Xaml.FrameworkElement element, int value) => element.SetValue(RowProperty, value);
Exemplo n.º 8
0
 public static int GetRow(Microsoft.UI.Xaml.FrameworkElement element) => (int)element.GetValue(RowProperty);