10 references to WS_VSCROLL
System.Windows.Forms (10)
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (1)
355
cp.Style |= (int)WINDOW_STYLE.
WS_VSCROLL
| PInvoke.CBS_HASSTRINGS | PInvoke.CBS_AUTOHSCROLL;
System\Windows\Forms\Controls\ListBoxes\ListBox.cs (1)
272
cp.Style |= (int)WINDOW_STYLE.
WS_VSCROLL
| PInvoke.LBS_NOTIFY | PInvoke.LBS_HASSTRINGS;
System\Windows\Forms\Controls\ListView\ListView.cs (1)
640
cp.Style |= currentStyle & (int)(WINDOW_STYLE.WS_HSCROLL | WINDOW_STYLE.
WS_VSCROLL
);
System\Windows\Forms\Controls\RichTextBox\RichTextBox.cs (1)
302
cp.Style |= (int)WINDOW_STYLE.
WS_VSCROLL
;
System\Windows\Forms\Controls\TextBox\TextBox.cs (1)
308
cp.Style |= (int)WINDOW_STYLE.
WS_VSCROLL
;
System\Windows\Forms\Controls\TextBox\TextBoxBase.cs (1)
1022
bool hasVScroll = (style & WINDOW_STYLE.
WS_VSCROLL
) != 0;
System\Windows\Forms\Controls\TreeView\TreeView.cs (1)
347
cp.Style |= currentStyle & (int)(WINDOW_STYLE.WS_HSCROLL | WINDOW_STYLE.
WS_VSCROLL
);
System\Windows\Forms\MDI\MDIClient.cs (1)
91
cp.Style |= (int)(WINDOW_STYLE.
WS_VSCROLL
| WINDOW_STYLE.WS_HSCROLL);
System\Windows\Forms\Scrolling\ScrollableControl.cs (2)
172
cp.Style |= (int)WINDOW_STYLE.
WS_VSCROLL
;
176
cp.Style &= ~(int)WINDOW_STYLE.
WS_VSCROLL
;