Skip to content

Commit 39ba5fa

Browse files
committed
Merge pull request #4123 from MahApps/fix/4117
Fix getting the wrong Ancestor (ScrollViewer) at CustomValidationPopup
1 parent 8c992b2 commit 39ba5fa

File tree

2 files changed

+42
-1
lines changed

2 files changed

+42
-1
lines changed

src/MahApps.Metro/Controls/CustomValidationPopup.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ private void CustomValidationPopup_Loaded(object sender, RoutedEventArgs e)
144144
this.scrollViewer.ScrollChanged -= this.ScrollViewer_ScrollChanged;
145145
}
146146

147-
this.scrollViewer = adornedElement.TryFindParent<ScrollViewer>();
147+
this.scrollViewer = adornedElement.GetVisualAncestor<ScrollViewer>();
148148
if (this.scrollViewer != null)
149149
{
150150
this.scrollViewer.ScrollChanged += this.ScrollViewer_ScrollChanged;

src/MahApps.Metro/Controls/TreeHelper.cs

+41
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,47 @@ public static IEnumerable<DependencyObject> GetAncestors(this DependencyObject c
5858
}
5959
}
6060

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+
61102
/// <summary>
62103
/// Finds a Child of a given item in the visual tree.
63104
/// </summary>

0 commit comments

Comments
 (0)