public static void SetPlacementChild(Windows.Popup popup, FrameworkElement placementChild) { //popup.AssertNotNull("popup"); popup.SetValue(PlacementChildProperty, placementChild); }
public static void SetActualOrientation(Windows.Popup popup, PopupOrientation orientation) { //popup.AssertNotNull("popup"); popup.SetValue(ActualOrientationProperty, orientation); }
public static void SetStaysOpen(Windows.Popup popup, bool staysOpen) { //popup.AssertNotNull("popup"); popup.SetValue(StaysOpenProperty, staysOpen); }
public static void SetPreferredOrientations(Windows.Popup popup, PopupOrientationCollection orientations) { //popup.AssertNotNull("popup"); popup.SetValue(PreferredOrientationsProperty, orientations); }