зеркало из https://github.com/DeGsoft/maui-linux.git
[WPF] Dont set Slider.Value if it already matches control (#9847)
This commit is contained in:
Родитель
92be6e27e7
Коммит
7a698427bf
|
@ -60,7 +60,8 @@ namespace Xamarin.Forms.Platform.WPF
|
|||
|
||||
void HandleValueChanged(object sender, RoutedPropertyChangedEventArgs<double> routedPropertyChangedEventArgs)
|
||||
{
|
||||
((IElementController)Element).SetValueFromRenderer(Slider.ValueProperty, Control.Value);
|
||||
if (Control.Value != Element.Value)
|
||||
((IElementController)Element).SetValueFromRenderer(Slider.ValueProperty, Control.Value);
|
||||
}
|
||||
|
||||
bool _isDisposed;
|
||||
|
|
Загрузка…
Ссылка в новой задаче