Beispiel #1
0
 public static bool GetIsNativeMenuExported(TopLevel tl) => tl.GetValue(IsNativeMenuExportedProperty);
Beispiel #2
0
 static void SetIsNativeMenuExported(TopLevel tl, bool value)
 {
     GetInfo(tl).ChangingIsExported = true;
     tl.SetValue(IsNativeMenuExportedProperty, value);
 }
Beispiel #3
0
 private void OnParentChanged(TopLevel control)
 {
     Unregister();
     _root = control;
     Register();
 }