2 types derived from ScrollBar
System.Windows.Forms (2)
winforms\Managed\System\WinForms\HScrollBar.cs (1)
29
public class HScrollBar :
ScrollBar
{
winforms\Managed\System\WinForms\VScrollBar.cs (1)
29
public class VScrollBar :
ScrollBar
{
46 references to ScrollBar
System.Windows.Forms (27)
winforms\Managed\System\WinForms\DataGrid.cs (5)
255
private
ScrollBar
horizScrollBar = new HScrollBar();
256
private
ScrollBar
vertScrollBar = new VScrollBar();
2314
protected
ScrollBar
HorizScrollBar {
2969
protected
ScrollBar
VertScrollBar {
4371
ScrollBar
sb = wheelingDown ? vertScrollBar : horizScrollBar;
winforms\Managed\System\WinForms\DataGridView.cs (2)
3483
protected
ScrollBar
HorizontalScrollBar
5222
protected
ScrollBar
VerticalScrollBar
winforms\Managed\System\WinForms\DataGridViewMethods.cs (3)
16906
ScrollBar
sb = (verticalScroll ? (
ScrollBar
) this.vertScrollBar : (
ScrollBar
) this.horizScrollBar);
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (2)
127
private
ScrollBar
scrollBar = null;
562
private
ScrollBar
ScrollBar {
winforms\Managed\System\WinForms\ScrollableControl.cs (1)
1015
/// Raises the <see cref='System.Windows.Forms.
ScrollBar
.OnScroll'/> event.
winforms\Managed\System\WinForms\ScrollBar.cs (7)
53
/// Initializes a new instance of the <see cref='System.Windows.Forms.
ScrollBar
'/>
306
/// Gets or sets a value to be added or subtracted to the <see cref='System.Windows.Forms.
ScrollBar
.Value'/>
400
/// <see cref='System.Windows.Forms.
ScrollBar
.Value'/>
644
/// Occurs when the <see cref='System.Windows.Forms.
ScrollBar
.Value'/> property has changed, either by a
645
/// <see cref='System.Windows.Forms.
ScrollBar
.OnScroll'/> event or programatically.
709
/// Raises the <see cref='System.Windows.Forms.
ScrollBar
.ValueChanged'/> event.
760
/// Raises the <see cref='System.Windows.Forms.
ScrollBar
.ValueChanged'/> event.
winforms\Managed\System\WinForms\ScrollEvent.cs (1)
18
/// <para>Provides data for the <see cref='System.Windows.Forms.
ScrollBar
.Scroll'/>
winforms\Managed\System\WinForms\ScrollEventHandler.cs (1)
18
/// <see langword='Scroll'/> event of a <see cref='System.Windows.Forms.
ScrollBar
'/>, <see cref='System.Windows.Forms.TrackBar'/>, or
winforms\Managed\System\WinForms\ScrollEventType.cs (3)
21
/// Specifies the type of action used to raise the <see cref='System.Windows.Forms.
ScrollBar
.Scroll'/> event.
97
/// scroll box was moved to the <see cref='System.Windows.Forms.
ScrollBar
.Minimum'/>
108
/// scroll box was moved to the <see cref='System.Windows.Forms.
ScrollBar
.Maximum'/>
winforms\Managed\System\WinForms\ScrollOrientation.cs (1)
11
/// <para>Provides data for the <see cref='System.Windows.Forms.
ScrollBar
.Scroll'/>
winforms\Managed\System\WinForms\ScrollProperties.cs (1)
214
/// <see cref='System.Windows.Forms.
ScrollBar
.Value'/>
System.Workflow.ComponentModel (19)
AuthoringOM\Design\ActivityDesigner.cs (2)
1527
protected virtual void OnScroll(
ScrollBar
sender, int value)
2860
bool IWorkflowDesignerMessageSink.OnScroll(
ScrollBar
sender, int value)
AuthoringOM\Design\DesignerInterfaces.cs (1)
135
bool OnScroll(
ScrollBar
sender, int value);
AuthoringOM\Design\DesignerWidgets.cs (2)
1441
private
ScrollBar
scrollBar;
1528
public
ScrollBar
ScrollBar
AuthoringOM\Design\MessageFilters\AutoScrollExpandMessageFilter.cs (2)
118
ScrollBar
hScrollBar = ParentView.HScrollBar;
124
ScrollBar
vScrollBar = ParentView.VScrollBar;
AuthoringOM\Design\MessageFilters\FreeFormDragDropManager.cs (1)
116
protected override bool OnScroll(
ScrollBar
sender, int value)
AuthoringOM\Design\MessageFilters\WindowManager.cs (1)
329
protected override bool OnScroll(
ScrollBar
sender, int value)
AuthoringOM\Design\MessageFilters\WorkflowDesignerMessageFilter.cs (2)
129
protected virtual bool OnScroll(
ScrollBar
sender, int value)
455
bool IWorkflowDesignerMessageSink.OnScroll(
ScrollBar
sender, int value)
AuthoringOM\Design\WorkflowView.cs (8)
344
ScrollBar
hScrollBar = HScrollBar;
345
ScrollBar
vScrollBar = VScrollBar;
463
ScrollBar
hScrollBar = HScrollBar;
471
ScrollBar
vScrollBar = VScrollBar;
1269
ScrollBar
hScrollBar = HScrollBar;
1270
ScrollBar
vScrollBar = VScrollBar;
1771
ScrollBar
scrollBar = sender as
ScrollBar
;