You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@Speuline Hi, this is limited by the ScrollViewer itself, cause it doesn't handle this
/// <summary>Responds to a click of the mouse wheel.</summary>/// <param name="e">Required arguments that describe this event.</param>protectedoverridevoidOnMouseWheel(MouseWheelEventArgse){if(e.Handled||!this.HandlesMouseWheelScrolling)return;if(this.ScrollInfo!=null){if(e.Delta<0)this.ScrollInfo.MouseWheelDown();elsethis.ScrollInfo.MouseWheelUp();}e.Handled=true;}
I will add a new attached property IsHorizontalScrollWheelEnabled in 1.6.0
Hello,
Is it normal that the MetroAnimatedSingleRowTabControl header can't be scrolled with the mousewheel?
It's a bit annoying.
Thanks in advance
The text was updated successfully, but these errors were encountered: