Fix Range Slider

This commit is contained in:
LiWenhao
2024-04-01 14:34:06 +08:00
parent 90c1a64be3
commit e4ea5ccadf

View File

@@ -212,7 +212,7 @@ public class RangeSlider: TemplatedControl
{ {
if (_track is null) return; if (_track is null) return;
var value = GetValueByPoint(posOnTrack); var value = GetValueByPoint(posOnTrack);
var thumb = GetThumbByPoint(posOnTrack); var thumb = _isDragging ? _currentThumb : GetThumbByPoint(posOnTrack);
if (_currentThumb !=null && _currentThumb != thumb) return; if (_currentThumb !=null && _currentThumb != thumb) return;
if (thumb is null) return; if (thumb is null) return;
if (thumb == _track.LowerThumb) if (thumb == _track.LowerThumb)
@@ -221,6 +221,7 @@ public class RangeSlider: TemplatedControl
} }
else else
{ {
if (LowerValue >= value) SetCurrentValue(LowerValueProperty, IsSnapToTick ? SnapToTick(value) : value);
SetCurrentValue(UpperValueProperty, IsSnapToTick ? SnapToTick(value) : value); SetCurrentValue(UpperValueProperty, IsSnapToTick ? SnapToTick(value) : value);
} }
} }