Skip to content

Commit 8c992b2

Browse files
committed
Merge pull request #4122 from MahApps/fix/4120
Fix position of ValidationErrorTemplate together with ValidatesOnExceptions
1 parent 4025dca commit 8c992b2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
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

+2-2
Original file line numberDiff line numberDiff line change
@@ -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;

0 commit comments

Comments
 (0)