C# 클래스 GitHub.VisualStudio.UI.Helpers.ScrollViewerUtilities

Utilities for fixing WPF's broken ScrollViewer.
파일 보기 프로젝트 열기: github/VisualStudio

공개 메소드들

메소드 설명
FixMouseWheelScroll ( object sender, System.Windows.Input.MouseWheelEventArgs e ) : void

Fixes mouse wheel scrolling in controls that have a ScrollViewer.

WPF's ScrollViewer is broken in that it doesn't pass scroll events to the parent control when it can't scroll any more. Add this method as an event handler to a control which has a ScrollViewer in its template to fix this.

메소드 상세

FixMouseWheelScroll() 공개 정적인 메소드

Fixes mouse wheel scrolling in controls that have a ScrollViewer.
WPF's ScrollViewer is broken in that it doesn't pass scroll events to the parent control when it can't scroll any more. Add this method as an event handler to a control which has a ScrollViewer in its template to fix this.
public static FixMouseWheelScroll ( object sender, System.Windows.Input.MouseWheelEventArgs e ) : void
sender object The sender.
e System.Windows.Input.MouseWheelEventArgs The event arguments.
리턴 void