Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix IsReadonly issue #1840

Merged
merged 1 commit into from
Apr 15, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion MahApps.Metro/Controls/NumericUpDown.cs
Original file line number Diff line number Diff line change
Expand Up @@ -784,6 +784,10 @@ private ScrollViewer TryFindScrollViewer()

private void ChangeValueWithSpeedUp(bool toPositive)
{
if(IsReadOnly)
{
return;
}
double direction = toPositive ? 1 : -1;
if (Speedup)
{
Expand All @@ -809,6 +813,11 @@ private void ChangeValueInternal(bool addInterval)

private void ChangeValueInternal(double interval)
{
if(IsReadOnly)
{
return;
}

NumericUpDownChangedRoutedEventArgs routedEvent = interval > 0 ?
new NumericUpDownChangedRoutedEventArgs(ValueIncrementedEvent, interval) :
new NumericUpDownChangedRoutedEventArgs(ValueDecrementedEvent, interval);
Expand Down Expand Up @@ -999,4 +1008,4 @@ private void SetRemoveStringFormatFromText(string stringFormat)
_removeFromText = new Tuple<string, string>(tailing, leading);
}
}
}
}