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