MouseWheelActiveOnFocus="True" not working anymore since update to 1.9.0.0.
Previous 1.8.0.0 work as expected by update filed with mouse wheel if mousepointer is over field without focus.
But since 1.9.0.0 only "false" mode with focused filed working.
Comments: ** Comment from web user: MarcusEU **
Previous 1.8.0.0 work as expected by update filed with mouse wheel if mousepointer is over field without focus.
But since 1.9.0.0 only "false" mode with focused filed working.
Comments: ** Comment from web user: MarcusEU **
I'dont know if it was a bug in the previous versions or how to interprete the Property exactly, but i love the previous behaviour to increment by mouse wheele without focusing the filed.
Do get this back i change the code in file "UpDownBase.cs" in Line 283
from
if( !e.Handled && AllowSpin && !IsReadOnly && ( TextBox.IsFocused && MouseWheelActiveOnFocus ) )
to
if( !e.Handled && AllowSpin && !IsReadOnly && ( TextBox.IsFocused || ! MouseWheelActiveOnFocus ) )
Regards
Marcus