Пример #1
0
 public static void SetPlacementChild(Windows.Popup popup, FrameworkElement placementChild)
 {
     //popup.AssertNotNull("popup");
     popup.SetValue(PlacementChildProperty, placementChild);
 }
Пример #2
0
 public static void SetActualOrientation(Windows.Popup popup, PopupOrientation orientation)
 {
     //popup.AssertNotNull("popup");
     popup.SetValue(ActualOrientationProperty, orientation);
 }
Пример #3
0
 public static void SetStaysOpen(Windows.Popup popup, bool staysOpen)
 {
     //popup.AssertNotNull("popup");
     popup.SetValue(StaysOpenProperty, staysOpen);
 }
Пример #4
0
 public static void SetPreferredOrientations(Windows.Popup popup, PopupOrientationCollection orientations)
 {
     //popup.AssertNotNull("popup");
     popup.SetValue(PreferredOrientationsProperty, orientations);
 }