5 references to WM_VSCROLL
UIAutomationClientsideProviders (5)
MS\Internal\AutomationProxies\WindowsScroll.cs (2)
324
int message = sbFlag == NativeMethods.SB_HORZ ? NativeMethods.WM_HSCROLL : NativeMethods.
WM_VSCROLL
;
438
int message = sbFlag == NativeMethods.SB_HORZ ? NativeMethods.WM_HSCROLL : NativeMethods.
WM_VSCROLL
;
MS\Internal\AutomationProxies\WindowsScrollBar.cs (1)
709
IsScrollBarVertical(_hwnd, _sbFlag) ? NativeMethods.
WM_VSCROLL
: NativeMethods.WM_HSCROLL;
MS\Internal\AutomationProxies\WindowsScrollBarBits.cs (1)
571
int msg = (style == NativeMethods.SBS_HORZ) ? NativeMethods.WM_HSCROLL : NativeMethods.
WM_VSCROLL
;
MS\Internal\AutomationProxies\WindowsSlider.cs (1)
189
int msg = IsHorizontalSlider () ? NativeMethods.WM_HSCROLL : NativeMethods.
WM_VSCROLL
;