File tree 2 files changed +42
-1
lines changed
src/MahApps.Metro/Controls
2 files changed +42
-1
lines changed Original file line number Diff line number Diff line change @@ -144,7 +144,7 @@ private void CustomValidationPopup_Loaded(object sender, RoutedEventArgs e)
144
144
this . scrollViewer . ScrollChanged -= this . ScrollViewer_ScrollChanged ;
145
145
}
146
146
147
- this . scrollViewer = adornedElement . TryFindParent < ScrollViewer > ( ) ;
147
+ this . scrollViewer = adornedElement . GetVisualAncestor < ScrollViewer > ( ) ;
148
148
if ( this . scrollViewer != null )
149
149
{
150
150
this . scrollViewer . ScrollChanged += this . ScrollViewer_ScrollChanged ;
Original file line number Diff line number Diff line change @@ -58,6 +58,47 @@ public static IEnumerable<DependencyObject> GetAncestors(this DependencyObject c
58
58
}
59
59
}
60
60
61
+ /// <summary>
62
+ /// Returns full visual ancestry, starting at the leaf.
63
+ /// <para>If element is not of <see cref="Visual"/> or <see cref="Visual3D"/> the logical ancestry is used.</para>
64
+ /// </summary>
65
+ /// <param name="leaf">The starting object.</param>
66
+ /// <returns></returns>
67
+ public static IEnumerable < DependencyObject > GetVisualAncestry ( this DependencyObject ? leaf )
68
+ {
69
+ while ( leaf != null )
70
+ {
71
+ yield return leaf ;
72
+ leaf = leaf is Visual || leaf is Visual3D
73
+ ? VisualTreeHelper . GetParent ( leaf )
74
+ : LogicalTreeHelper . GetParent ( leaf ) ;
75
+ }
76
+ }
77
+
78
+ /// <summary>
79
+ /// Tries to find and returns a visual ancestor, starting at the leaf.
80
+ /// <para>If element is not of <see cref="Visual"/> or <see cref="Visual3D"/> the logical ancestry is used.</para>
81
+ /// </summary>
82
+ /// <param name="leaf">The starting object.</param>
83
+ /// <returns></returns>
84
+ public static T GetVisualAncestor < T > ( this DependencyObject ? leaf )
85
+ where T : DependencyObject
86
+ {
87
+ while ( leaf != null )
88
+ {
89
+ if ( leaf is T ancestor )
90
+ {
91
+ return ancestor ;
92
+ }
93
+
94
+ leaf = leaf is Visual || leaf is Visual3D
95
+ ? VisualTreeHelper . GetParent ( leaf )
96
+ : LogicalTreeHelper . GetParent ( leaf ) ;
97
+ }
98
+
99
+ return default ( T ) ;
100
+ }
101
+
61
102
/// <summary>
62
103
/// Finds a Child of a given item in the visual tree.
63
104
/// </summary>
You can’t perform that action at this time.
0 commit comments