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