Skip to content

Commit 9f07f98

Browse files
committed
rename OnMaximumValueChanged to OnMaximumChanged
1 parent 2a5d70e commit 9f07f98

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • src/Shared/HandyControl_Shared/Controls/Other

src/Shared/HandyControl_Shared/Controls/Other/Badge.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@ public BadgeStatus Status
6363
}
6464

6565
public static readonly DependencyProperty MaximumProperty = DependencyProperty.Register(
66-
"Maximum", typeof(int), typeof(Badge), new PropertyMetadata(ValueBoxes.Int99Box, OnMaximumValueChanged));
66+
"Maximum", typeof(int), typeof(Badge), new PropertyMetadata(ValueBoxes.Int99Box, OnMaximumChanged));
6767

68-
private static void OnMaximumValueChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
68+
private static void OnMaximumChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
6969
{
7070
var ctl = (Badge) d;
7171
var v = ctl.Value;

0 commit comments

Comments
 (0)