10 references to WS_VSCROLL
System.Windows.Forms (10)
winforms\Managed\System\WinForms\ComboBox.cs (1)
420
cp.Style |= NativeMethods.
WS_VSCROLL
| NativeMethods.CBS_HASSTRINGS | NativeMethods.CBS_AUTOHSCROLL;
winforms\Managed\System\WinForms\ListBox.cs (1)
339
cp.Style |= NativeMethods.
WS_VSCROLL
| NativeMethods.LBS_NOTIFY | NativeMethods.LBS_HASSTRINGS;
winforms\Managed\System\WinForms\ListView.cs (1)
689
cp.Style |= (currentStyle & (NativeMethods.WS_HSCROLL | NativeMethods.
WS_VSCROLL
));
winforms\Managed\System\WinForms\MDIClient.cs (1)
118
cp.Style |= NativeMethods.
WS_VSCROLL
| NativeMethods.WS_HSCROLL;
winforms\Managed\System\WinForms\Printing\PrintPreviewControl.cs (1)
173
cp.Style |= NativeMethods.
WS_VSCROLL
;
winforms\Managed\System\WinForms\RichTextBox.cs (1)
414
cp.Style |= NativeMethods.
WS_VSCROLL
;
winforms\Managed\System\WinForms\ScrollableControl.cs (2)
242
cp.Style |= NativeMethods.
WS_VSCROLL
;
245
cp.Style &= (~NativeMethods.
WS_VSCROLL
);
winforms\Managed\System\WinForms\TextBox.cs (1)
356
cp.Style |= NativeMethods.
WS_VSCROLL
;
winforms\Managed\System\WinForms\TreeView.cs (1)
359
cp.Style |= (currentStyle & (NativeMethods.WS_HSCROLL | NativeMethods.
WS_VSCROLL
));