Skip to content

Commit 4421322

Browse files
committed
Merge branch 'hotfix/2.4.6' into main
2 parents 4025dca + 39ba5fa commit 4421322

File tree

3 files changed

+45
-4
lines changed

3 files changed

+45
-4
lines changed

src/MahApps.Metro.Samples/MahApps.Metro.Demo/ExampleViews/TextExamples.xaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@
159159
Style="{DynamicResource MahApps.Styles.TextBox.Button}" />
160160
<TextBox Margin="{StaticResource ControlMargin}"
161161
mah:TextBoxHelper.Watermark="Number smaller than 10"
162-
Text="{Binding IntegerGreater10Property, ValidatesOnDataErrors=True, UpdateSourceTrigger=PropertyChanged, NotifyOnValidationError=True}" />
162+
Text="{Binding IntegerGreater10Property, ValidatesOnExceptions=True, ValidatesOnDataErrors=True, UpdateSourceTrigger=PropertyChanged, NotifyOnValidationError=True}" />
163163
<TextBox Margin="{StaticResource ControlMargin}"
164164
mah:TextBoxHelper.SelectAllOnFocus="True"
165165
Text="Select all on focus" />

src/MahApps.Metro/Controls/CustomValidationPopup.cs

+3-3
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;
@@ -260,10 +260,10 @@ private void OnTransitionCompleted(object sender, RoutedEventArgs e)
260260

261261
private void ScrollViewer_ScrollChanged(object sender, ScrollChangedEventArgs e)
262262
{
263-
this.RefreshPosition();
264-
265263
if (e.VerticalChange > 0 || e.VerticalChange < 0 || e.HorizontalChange > 0 || e.HorizontalChange < 0)
266264
{
265+
this.RefreshPosition();
266+
267267
if (IsElementVisible(this.AdornedElement as FrameworkElement, this.scrollViewer))
268268
{
269269
var adornedElement = this.AdornedElement;

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)