コード例 #1
0
ファイル: Popup.cs プロジェクト: 925coder/ravendb
 public static FrameworkElement GetPlacementParent(Windows.Popup popup)
 {
     //popup.AssertNotNull("popup");
     return popup.GetValue(PlacementParentProperty) as FrameworkElement;
 }
コード例 #2
0
ファイル: Popup.cs プロジェクト: 925coder/ravendb
 public static PopupOrientation GetActualOrientation(Windows.Popup popup)
 {
     //popup.AssertNotNull("popup");
     return popup.GetValue(ActualOrientationProperty) as PopupOrientation;
 }
コード例 #3
0
ファイル: Popup.cs プロジェクト: 925coder/ravendb
 public static bool GetStaysOpen(Windows.Popup popup)
 {
     //popup.AssertNotNull("popup");
     return (bool)popup.GetValue(StaysOpenProperty);
 }
コード例 #4
0
ファイル: Popup.cs プロジェクト: 925coder/ravendb
 public static PopupOrientationCollection GetPreferredOrientations(Windows.Popup popup)
 {
     //popup.AssertNotNull("popup");
     return popup.GetValue(PreferredOrientationsProperty) as PopupOrientationCollection;
 }