Examples:
<xctk:IntegerUpDown Value="{Binding SomeValue1}" Increment="5"/>
<xctk:DecimalUpDown Value="{Binding SomeValue2}" Increment="5"/>
<xctk:ShortUpDown Value="{Binding SomeValue3}" Increment="5"/>
Bug description:
1. Set Increment to any value, e.g. to 5.
2. Set the value to something not dividing exactly to increment. E.g. Value = 6.
3. Scroll down to the value below zero. Works fine.
4. Try to scroll up back to the value above zero. Make sure you can't. The value remains negative.
Comments: ** Comment from web user: BoucherS **
<xctk:IntegerUpDown Value="{Binding SomeValue1}" Increment="5"/>
<xctk:DecimalUpDown Value="{Binding SomeValue2}" Increment="5"/>
<xctk:ShortUpDown Value="{Binding SomeValue3}" Increment="5"/>
Bug description:
1. Set Increment to any value, e.g. to 5.
2. Set the value to something not dividing exactly to increment. E.g. Value = 6.
3. Scroll down to the value below zero. Works fine.
4. Try to scroll up back to the value above zero. Make sure you can't. The value remains negative.
Comments: ** Comment from web user: BoucherS **
Hi,
I can't reproduce in v2.9. Can you give more details ?
Here's the test :
```
<StackPanel>
<xctk:IntegerUpDown Value="6"
Increment="5" />
<xctk:DecimalUpDown Value="6"
Increment="5" />
<xctk:ShortUpDown Value="6"
Increment="5" />
</StackPanel>
```
1. focus a control
2. move mouse scroll down once (or click down button on control) => Value becomes 1
3. move mouse scroll down once (or click down button on control) => Value becomes -4
4. move mouse scroll up once (or click up button on control) => Value becomes 1