7 types derived from ScrollableControl
DesignSurface (1)
MainForm.MyScrollableControl.cs (1)
8internal class MyScrollableControl : ScrollableControl
System.Windows.Forms (3)
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
25public partial class ToolStrip : ScrollableControl, IArrangedElement, ISupportToolStripPanel
System\Windows\Forms\Layout\Containers\ContainerControl.cs (1)
15public class ContainerControl : ScrollableControl, IContainerControl
System\Windows\Forms\Panels\Panel.cs (1)
19public partial class Panel : ScrollableControl
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\ComponentTray.cs (1)
25public class ComponentTray : ScrollableControl, IExtenderProvider, ISelectionUIHandler, IOleDragClient
System\Windows\Forms\Design\DesignerFrame.cs (1)
340private class OverlayControl : ScrollableControl
System.Windows.Forms.Tests (1)
System\Windows\Forms\ScrollableControlTests.cs (1)
2560public class SubScrollableControl : ScrollableControl
73 instantiations of ScrollableControl
System.Windows.Forms.Tests (73)
System\Windows\Forms\BinaryFormat\WinFormsBinaryFormattedObjectTests.cs (1)
192{ new ScrollableControl(), new string[] { "DataContext: Object", "Tag: Object" } },
System\Windows\Forms\DockPaddingEdgesTests.cs (23)
22using ScrollableControl owner = new() 41using ScrollableControl owner = new(); 60using ScrollableControl owner = new() 81using ScrollableControl owner = new() 103using ScrollableControl owner = new() 124using ScrollableControl owner = new() 146using ScrollableControl owner = new() 167using ScrollableControl owner = new() 189using ScrollableControl owner = new() 210using ScrollableControl owner = new() 232using ScrollableControl owner = new() 250ScrollableControl owner = new() 302using ScrollableControl owner = new() 314using ScrollableControl owner = new() 327using ScrollableControl owner = new() 343using ScrollableControl owner = new() 360using ScrollableControl owner = new() 371using ScrollableControl owner = new() 383using ScrollableControl owner = new() 404using ScrollableControl owner = new() 425using ScrollableControl owner = new() 446using ScrollableControl owner = new() 467using ScrollableControl owner = new()
System\Windows\Forms\HScrollPropertiesTests.cs (1)
10yield return new object[] { new ScrollableControl() };
System\Windows\Forms\Layout\LayoutEngineTests.cs (2)
14engine.InitLayout(new ScrollableControl(), BoundsSpecified.All); 35Assert.False(engine.Layout(new ScrollableControl(), new LayoutEventArgs(new Component(), "affectedProperty")));
System\Windows\Forms\Layout\TableLayoutSettingsTypeConverterTests.cs (2)
182using ScrollableControl control = new(); 197using ScrollableControl control = new();
System\Windows\Forms\ScrollableControlTests.cs (21)
342using ScrollableControl control = new() 373using ScrollableControl control = new() 417using ScrollableControl control = new(); 441using ScrollableControl control = new(); 467using ScrollableControl control = new(); 475using ScrollableControl control = new() 492using ScrollableControl control = new(); 521using ScrollableControl control = new() 539using ScrollableControl control = new(); 572using ScrollableControl control = new() 616using ScrollableControl control = new() 658using ScrollableControl control = new(); 682using ScrollableControl control = new(); 792using ScrollableControl control = new(); 817using ScrollableControl control = new(); 855using ScrollableControl control = new() 870using ScrollableControl control = new() 2188using ScrollableControl control = new() 2208using ScrollableControl control = new(); 2235using ScrollableControl control = new() 2259using ScrollableControl control = new()
System\Windows\Forms\ScrollPropertiesTests.cs (22)
10yield return new object[] { new ScrollableControl() }; 33using ScrollableControl container = new(); 53using ScrollableControl container = new() 101using ScrollableControl container = new(); 117using ScrollableControl container = new() 150using ScrollableControl container = new(); 168using ScrollableControl container = new(); 184using ScrollableControl container = new() 217using ScrollableControl container = new(); 235using ScrollableControl container = new(); 281using ScrollableControl container = new(); 298using ScrollableControl container = new(); 315using ScrollableControl container = new() 340using ScrollableControl container = new(); 364using ScrollableControl container = new(); 383using ScrollableControl container = new() 425using ScrollableControl container = new(); 442using ScrollableControl container = new(); 468using ScrollableControl container = new() 511using ScrollableControl container = new(); 521using ScrollableControl container = new(); 541using ScrollableControl container = new()
System\Windows\Forms\VScrollPropertiesTests.cs (1)
11yield return new object[] { new ScrollableControl() };
271 references to ScrollableControl
System.Windows.Forms (27)
System\Windows\Forms\Control.cs (3)
7525if (this is not ScrollableControl 7603if (this is not ScrollableControl && !IsMirrored) 8327if (this is ScrollableControl scrollControl && scrollLocation != Point.Empty)
System\Windows\Forms\Controls\WebBrowser\WebBrowserContainer.cs (1)
339ScrollableControl? containingControl = ctl.ContainingControl;
System\Windows\Forms\Layout\CommonProperties.cs (2)
696/// <see cref="ScrollableControl"/> checks if the layout bounds has been set in the <see cref="CommonProperties"/> 698/// layout engine. If the bounds has been set, <see cref="ScrollableControl"/> will use those bounds to check if
System\Windows\Forms\Layout\Containers\ContainerControl.cs (4)
1331private static ScrollableControl? FindScrollableParent(Control ctl) 1334while (current is not null and not ScrollableControl) 1339return (ScrollableControl?)current; 1347ScrollableControl? scrollParent = FindScrollableParent(last);
System\Windows\Forms\Scrolling\HScrollProperties.cs (4)
11public HScrollProperties(ScrollableControl? container) : base(container) 15private protected override int GetPageSize(ScrollableControl parent) => parent.ClientRectangle.Width; 19private protected override int GetHorizontalDisplayPosition(ScrollableControl parent) => -_value; 21private protected override int GetVerticalDisplayPosition(ScrollableControl parent) => parent.DisplayRectangle.Y;
System\Windows\Forms\Scrolling\ScrollableControl.cs (1)
56/// Initializes a new instance of the <see cref="ScrollableControl"/> class.
System\Windows\Forms\Scrolling\ScrollableControl.DockPaddingEdgesConverter.cs (2)
16private readonly ScrollableControl? _owner; 26internal DockPaddingEdges(ScrollableControl owner)
System\Windows\Forms\Scrolling\ScrollProperties.cs (6)
22private readonly ScrollableControl? _parent; 24protected ScrollableControl? ParentControl => _parent; 30protected ScrollProperties(ScrollableControl? container) 169private protected abstract int GetPageSize(ScrollableControl parent); 173private protected abstract int GetHorizontalDisplayPosition(ScrollableControl parent); 175private protected abstract int GetVerticalDisplayPosition(ScrollableControl parent);
System\Windows\Forms\Scrolling\VScrollProperties.cs (4)
11public VScrollProperties(ScrollableControl? container) : base(container) 15private protected override int GetPageSize(ScrollableControl parent) => parent.ClientRectangle.Height; 19private protected override int GetHorizontalDisplayPosition(ScrollableControl parent) => parent.DisplayRectangle.X; 21private protected override int GetVerticalDisplayPosition(ScrollableControl parent) => -_value;
System.Windows.Forms.Design (10)
System\Windows\Forms\Design\Behavior\DropSourceBehavior.cs (1)
272if (currentControl.Parent is ScrollableControl p)
System\Windows\Forms\Design\ControlDesigner.cs (2)
86if (Control.Parent is ScrollableControl parent) 96if (Control.Parent is ScrollableControl parent)
System\Windows\Forms\Design\ParentControlDesigner.cs (4)
577ScrollableControl p = newChild.Parent as ScrollableControl; 685if (HasComponent && Control is ScrollableControl control) 1199if (Control is ScrollableControl control)
System\Windows\Forms\Design\ScrollableControlDesigner.cs (2)
30ScrollableControl f = (ScrollableControl)Control;
System\Windows\Forms\Design\SelectionUIHandler.cs (1)
73if (GetControl() is ScrollableControl sc && sc.AutoScroll)
System.Windows.Forms.Design.Tests (5)
System\ComponentModel\Design\ByteViewerTests.cs (5)
1000public new const int ScrollStateAutoScrolling = ScrollableControl.ScrollStateAutoScrolling; 1002public new const int ScrollStateHScrollVisible = ScrollableControl.ScrollStateHScrollVisible; 1004public new const int ScrollStateVScrollVisible = ScrollableControl.ScrollStateVScrollVisible; 1006public new const int ScrollStateUserHasScrolled = ScrollableControl.ScrollStateUserHasScrolled; 1008public new const int ScrollStateFullDrag = ScrollableControl.ScrollStateFullDrag;
System.Windows.Forms.Tests (229)
System\Windows\Forms\ContainerControlTests.cs (5)
1401public new const int ScrollStateAutoScrolling = ScrollableControl.ScrollStateAutoScrolling; 1403public new const int ScrollStateHScrollVisible = ScrollableControl.ScrollStateHScrollVisible; 1405public new const int ScrollStateVScrollVisible = ScrollableControl.ScrollStateVScrollVisible; 1407public new const int ScrollStateUserHasScrolled = ScrollableControl.ScrollStateUserHasScrolled; 1409public new const int ScrollStateFullDrag = ScrollableControl.ScrollStateFullDrag;
System\Windows\Forms\Design\ComponentEditorFormTests.cs (5)
370public new const int ScrollStateAutoScrolling = ScrollableControl.ScrollStateAutoScrolling; 372public new const int ScrollStateHScrollVisible = ScrollableControl.ScrollStateHScrollVisible; 374public new const int ScrollStateVScrollVisible = ScrollableControl.ScrollStateVScrollVisible; 376public new const int ScrollStateUserHasScrolled = ScrollableControl.ScrollStateUserHasScrolled; 378public new const int ScrollStateFullDrag = ScrollableControl.ScrollStateFullDrag;
System\Windows\Forms\Design\ComponentEditorPageTests.cs (5)
869public new const int ScrollStateAutoScrolling = ScrollableControl.ScrollStateAutoScrolling; 871public new const int ScrollStateHScrollVisible = ScrollableControl.ScrollStateHScrollVisible; 873public new const int ScrollStateVScrollVisible = ScrollableControl.ScrollStateVScrollVisible; 875public new const int ScrollStateUserHasScrolled = ScrollableControl.ScrollStateUserHasScrolled; 877public new const int ScrollStateFullDrag = ScrollableControl.ScrollStateFullDrag;
System\Windows\Forms\DockPaddingEdgesConverterTests.cs (7)
14var converter = new ScrollableControl.DockPaddingEdgesConverter(); 17Assert.Equal(nameof(ScrollableControl.DockPaddingEdges.All), properties[0].Name); 18Assert.Equal(nameof(ScrollableControl.DockPaddingEdges.Left), properties[1].Name); 19Assert.Equal(nameof(ScrollableControl.DockPaddingEdges.Top), properties[2].Name); 20Assert.Equal(nameof(ScrollableControl.DockPaddingEdges.Right), properties[3].Name); 21Assert.Equal(nameof(ScrollableControl.DockPaddingEdges.Bottom), properties[4].Name); 27var converter = new ScrollableControl.DockPaddingEdgesConverter();
System\Windows\Forms\DockPaddingEdgesTests.cs (66)
22using ScrollableControl owner = new() 26ScrollableControl.DockPaddingEdges padding = owner.DockPadding; 41using ScrollableControl owner = new(); 42ScrollableControl.DockPaddingEdges padding = owner.DockPadding; 60using ScrollableControl owner = new() 65ScrollableControl.DockPaddingEdges padding = (ScrollableControl.DockPaddingEdges)original.Clone(); 81using ScrollableControl owner = new() 85ScrollableControl.DockPaddingEdges padding = owner.DockPadding; 103using ScrollableControl owner = new() 108ScrollableControl.DockPaddingEdges padding = (ScrollableControl.DockPaddingEdges)original.Clone(); 124using ScrollableControl owner = new() 128ScrollableControl.DockPaddingEdges padding = owner.DockPadding; 146using ScrollableControl owner = new() 151ScrollableControl.DockPaddingEdges padding = (ScrollableControl.DockPaddingEdges)original.Clone(); 167using ScrollableControl owner = new() 171ScrollableControl.DockPaddingEdges padding = owner.DockPadding; 189using ScrollableControl owner = new() 194ScrollableControl.DockPaddingEdges padding = (ScrollableControl.DockPaddingEdges)original.Clone(); 210using ScrollableControl owner = new() 214ScrollableControl.DockPaddingEdges padding = owner.DockPadding; 232using ScrollableControl owner = new() 237ScrollableControl.DockPaddingEdges padding = (ScrollableControl.DockPaddingEdges)original.Clone(); 248ScrollableControl.DockPaddingEdges CreatePadding(int left, int top, int right, int bottom) 250ScrollableControl owner = new() 257ScrollableControl.DockPaddingEdges CreateClonedPadding(int left, int top, int right, int bottom) 260return Assert.IsType<ScrollableControl.DockPaddingEdges>(cloneable.Clone()); 289public void DockPaddingEdges_Equals_Invoke_ReturnsExpected(ScrollableControl.DockPaddingEdges padding, object other, bool expected) 291if (other is ScrollableControl.DockPaddingEdges) 302using ScrollableControl owner = new() 306ScrollableControl.DockPaddingEdges padding = owner.DockPadding; 314using ScrollableControl owner = new() 319ScrollableControl.DockPaddingEdges padding = (ScrollableControl.DockPaddingEdges)original.Clone(); 327using ScrollableControl owner = new() 332ScrollableControl.DockPaddingEdges padding = (ScrollableControl.DockPaddingEdges)original.Clone(); 343using ScrollableControl owner = new() 349ScrollableControl.DockPaddingEdges padding = (ScrollableControl.DockPaddingEdges)original2.Clone(); 360using ScrollableControl owner = new() 364ScrollableControl.DockPaddingEdges padding = owner.DockPadding; 371using ScrollableControl owner = new() 376ScrollableControl.DockPaddingEdges padding = (ScrollableControl.DockPaddingEdges)original.Clone(); 383using ScrollableControl owner = new() 387ScrollableControl.DockPaddingEdges padding = owner.DockPadding; 389PropertyDescriptor property = properties[nameof(ScrollableControl.DockPaddingEdges.All)]; 404using ScrollableControl owner = new() 408ScrollableControl.DockPaddingEdges padding = owner.DockPadding; 410PropertyDescriptor property = properties[nameof(ScrollableControl.DockPaddingEdges.Left)]; 425using ScrollableControl owner = new() 429ScrollableControl.DockPaddingEdges padding = owner.DockPadding; 431PropertyDescriptor property = properties[nameof(ScrollableControl.DockPaddingEdges.Top)]; 446using ScrollableControl owner = new() 450ScrollableControl.DockPaddingEdges padding = owner.DockPadding; 452PropertyDescriptor property = properties[nameof(ScrollableControl.DockPaddingEdges.Right)]; 467using ScrollableControl owner = new() 471ScrollableControl.DockPaddingEdges padding = owner.DockPadding; 473PropertyDescriptor property = properties[nameof(ScrollableControl.DockPaddingEdges.Bottom)]; 488Assert.IsType<ScrollableControl.DockPaddingEdgesConverter>(TypeDescriptor.GetConverter(typeof(ScrollableControl.DockPaddingEdges)));
System\Windows\Forms\DomainUpDownTests.cs (5)
1454public new const int ScrollStateAutoScrolling = ScrollableControl.ScrollStateAutoScrolling; 1456public new const int ScrollStateHScrollVisible = ScrollableControl.ScrollStateHScrollVisible; 1458public new const int ScrollStateVScrollVisible = ScrollableControl.ScrollStateVScrollVisible; 1460public new const int ScrollStateUserHasScrolled = ScrollableControl.ScrollStateUserHasScrolled; 1462public new const int ScrollStateFullDrag = ScrollableControl.ScrollStateFullDrag;
System\Windows\Forms\FlowLayoutPanelTests.cs (5)
422public new const int ScrollStateAutoScrolling = ScrollableControl.ScrollStateAutoScrolling; 424public new const int ScrollStateHScrollVisible = ScrollableControl.ScrollStateHScrollVisible; 426public new const int ScrollStateVScrollVisible = ScrollableControl.ScrollStateVScrollVisible; 428public new const int ScrollStateUserHasScrolled = ScrollableControl.ScrollStateUserHasScrolled; 430public new const int ScrollStateFullDrag = ScrollableControl.ScrollStateFullDrag;
System\Windows\Forms\FormTests.cs (5)
2680public new const int ScrollStateAutoScrolling = ScrollableControl.ScrollStateAutoScrolling; 2682public new const int ScrollStateHScrollVisible = ScrollableControl.ScrollStateHScrollVisible; 2684public new const int ScrollStateVScrollVisible = ScrollableControl.ScrollStateVScrollVisible; 2686public new const int ScrollStateUserHasScrolled = ScrollableControl.ScrollStateUserHasScrolled; 2688public new const int ScrollStateFullDrag = ScrollableControl.ScrollStateFullDrag;
System\Windows\Forms\HScrollPropertiesTests.cs (3)
16public void HScrollProperties_Ctor_Control(ScrollableControl container) 31public SubHScrollProperties(ScrollableControl container) : base(container) 35public ScrollableControl ParentControlEntry => ParentControl;
System\Windows\Forms\Layout\TableLayoutSettingsTypeConverterTests.cs (2)
182using ScrollableControl control = new(); 197using ScrollableControl control = new();
System\Windows\Forms\MdiControlStripTests.cs (5)
340public new const int ScrollStateAutoScrolling = ScrollableControl.ScrollStateAutoScrolling; 342public new const int ScrollStateHScrollVisible = ScrollableControl.ScrollStateHScrollVisible; 344public new const int ScrollStateVScrollVisible = ScrollableControl.ScrollStateVScrollVisible; 346public new const int ScrollStateUserHasScrolled = ScrollableControl.ScrollStateUserHasScrolled; 348public new const int ScrollStateFullDrag = ScrollableControl.ScrollStateFullDrag;
System\Windows\Forms\MenuStripTests.cs (5)
836public new const int ScrollStateAutoScrolling = ScrollableControl.ScrollStateAutoScrolling; 838public new const int ScrollStateHScrollVisible = ScrollableControl.ScrollStateHScrollVisible; 840public new const int ScrollStateVScrollVisible = ScrollableControl.ScrollStateVScrollVisible; 842public new const int ScrollStateUserHasScrolled = ScrollableControl.ScrollStateUserHasScrolled; 844public new const int ScrollStateFullDrag = ScrollableControl.ScrollStateFullDrag;
System\Windows\Forms\PanelTests.cs (5)
1144public new const int ScrollStateAutoScrolling = ScrollableControl.ScrollStateAutoScrolling; 1146public new const int ScrollStateHScrollVisible = ScrollableControl.ScrollStateHScrollVisible; 1148public new const int ScrollStateVScrollVisible = ScrollableControl.ScrollStateVScrollVisible; 1150public new const int ScrollStateUserHasScrolled = ScrollableControl.ScrollStateUserHasScrolled; 1152public new const int ScrollStateFullDrag = ScrollableControl.ScrollStateFullDrag;
System\Windows\Forms\PropertyGridTests.cs (5)
4131public new const int ScrollStateAutoScrolling = ScrollableControl.ScrollStateAutoScrolling; 4133public new const int ScrollStateHScrollVisible = ScrollableControl.ScrollStateHScrollVisible; 4135public new const int ScrollStateVScrollVisible = ScrollableControl.ScrollStateVScrollVisible; 4137public new const int ScrollStateUserHasScrolled = ScrollableControl.ScrollStateUserHasScrolled; 4139public new const int ScrollStateFullDrag = ScrollableControl.ScrollStateFullDrag;
System\Windows\Forms\ScrollableControlTests.cs (34)
342using ScrollableControl control = new() 373using ScrollableControl control = new() 416PropertyDescriptor property = TypeDescriptor.GetProperties(typeof(ScrollableControl))[nameof(ScrollableControl.AutoScrollMargin)]; 417using ScrollableControl control = new(); 440PropertyDescriptor property = TypeDescriptor.GetProperties(typeof(ScrollableControl))[nameof(ScrollableControl.AutoScrollMargin)]; 441using ScrollableControl control = new(); 467using ScrollableControl control = new(); 475using ScrollableControl control = new() 492using ScrollableControl control = new(); 521using ScrollableControl control = new() 539using ScrollableControl control = new(); 572using ScrollableControl control = new() 616using ScrollableControl control = new() 657PropertyDescriptor property = TypeDescriptor.GetProperties(typeof(ScrollableControl))[nameof(ScrollableControl.AutoScrollMinSize)]; 658using ScrollableControl control = new(); 681PropertyDescriptor property = TypeDescriptor.GetProperties(typeof(ScrollableControl))[nameof(ScrollableControl.AutoScrollMinSize)]; 682using ScrollableControl control = new(); 792using ScrollableControl control = new(); 817using ScrollableControl control = new(); 855using ScrollableControl control = new() 870using ScrollableControl control = new() 2188using ScrollableControl control = new() 2208using ScrollableControl control = new(); 2235using ScrollableControl control = new() 2259using ScrollableControl control = new() 2562public new const int ScrollStateAutoScrolling = ScrollableControl.ScrollStateAutoScrolling; 2564public new const int ScrollStateHScrollVisible = ScrollableControl.ScrollStateHScrollVisible; 2566public new const int ScrollStateVScrollVisible = ScrollableControl.ScrollStateVScrollVisible; 2568public new const int ScrollStateUserHasScrolled = ScrollableControl.ScrollStateUserHasScrolled; 2570public new const int ScrollStateFullDrag = ScrollableControl.ScrollStateFullDrag;
System\Windows\Forms\ScrollPropertiesTests.cs (24)
16public void ScrollProperties_Ctor_Control(ScrollableControl container) 33using ScrollableControl container = new(); 53using ScrollableControl container = new() 101using ScrollableControl container = new(); 117using ScrollableControl container = new() 150using ScrollableControl container = new(); 168using ScrollableControl container = new(); 184using ScrollableControl container = new() 217using ScrollableControl container = new(); 235using ScrollableControl container = new(); 281using ScrollableControl container = new(); 298using ScrollableControl container = new(); 315using ScrollableControl container = new() 340using ScrollableControl container = new(); 364using ScrollableControl container = new(); 383using ScrollableControl container = new() 425using ScrollableControl container = new(); 442using ScrollableControl container = new(); 468using ScrollableControl container = new() 511using ScrollableControl container = new(); 521using ScrollableControl container = new(); 541using ScrollableControl container = new() 581public SubScrollProperties(ScrollableControl container) : base(container) 585public new ScrollableControl ParentControl => base.ParentControl;
System\Windows\Forms\StatusStripTests.cs (5)
1262public new const int ScrollStateAutoScrolling = ScrollableControl.ScrollStateAutoScrolling; 1264public new const int ScrollStateHScrollVisible = ScrollableControl.ScrollStateHScrollVisible; 1266public new const int ScrollStateVScrollVisible = ScrollableControl.ScrollStateVScrollVisible; 1268public new const int ScrollStateUserHasScrolled = ScrollableControl.ScrollStateUserHasScrolled; 1270public new const int ScrollStateFullDrag = ScrollableControl.ScrollStateFullDrag;
System\Windows\Forms\TableLayoutPanelTests.cs (5)
2161public new const int ScrollStateAutoScrolling = ScrollableControl.ScrollStateAutoScrolling; 2163public new const int ScrollStateHScrollVisible = ScrollableControl.ScrollStateHScrollVisible; 2165public new const int ScrollStateVScrollVisible = ScrollableControl.ScrollStateVScrollVisible; 2167public new const int ScrollStateUserHasScrolled = ScrollableControl.ScrollStateUserHasScrolled; 2169public new const int ScrollStateFullDrag = ScrollableControl.ScrollStateFullDrag;
System\Windows\Forms\TabPageTests.cs (5)
5217public new const int ScrollStateAutoScrolling = ScrollableControl.ScrollStateAutoScrolling; 5219public new const int ScrollStateHScrollVisible = ScrollableControl.ScrollStateHScrollVisible; 5221public new const int ScrollStateVScrollVisible = ScrollableControl.ScrollStateVScrollVisible; 5223public new const int ScrollStateUserHasScrolled = ScrollableControl.ScrollStateUserHasScrolled; 5225public new const int ScrollStateFullDrag = ScrollableControl.ScrollStateFullDrag;
System\Windows\Forms\ToolStripContentPanelTests.cs (5)
2006public new const int ScrollStateAutoScrolling = ScrollableControl.ScrollStateAutoScrolling; 2008public new const int ScrollStateHScrollVisible = ScrollableControl.ScrollStateHScrollVisible; 2010public new const int ScrollStateVScrollVisible = ScrollableControl.ScrollStateVScrollVisible; 2012public new const int ScrollStateUserHasScrolled = ScrollableControl.ScrollStateUserHasScrolled; 2014public new const int ScrollStateFullDrag = ScrollableControl.ScrollStateFullDrag;
System\Windows\Forms\ToolStripDropDownTests.cs (5)
5080public new const int ScrollStateAutoScrolling = ScrollableControl.ScrollStateAutoScrolling; 5082public new const int ScrollStateHScrollVisible = ScrollableControl.ScrollStateHScrollVisible; 5084public new const int ScrollStateVScrollVisible = ScrollableControl.ScrollStateVScrollVisible; 5086public new const int ScrollStateUserHasScrolled = ScrollableControl.ScrollStateUserHasScrolled; 5088public new const int ScrollStateFullDrag = ScrollableControl.ScrollStateFullDrag;
System\Windows\Forms\ToolStripTests.cs (5)
7508public new const int ScrollStateAutoScrolling = ScrollableControl.ScrollStateAutoScrolling; 7510public new const int ScrollStateHScrollVisible = ScrollableControl.ScrollStateHScrollVisible; 7512public new const int ScrollStateVScrollVisible = ScrollableControl.ScrollStateVScrollVisible; 7514public new const int ScrollStateUserHasScrolled = ScrollableControl.ScrollStateUserHasScrolled; 7516public new const int ScrollStateFullDrag = ScrollableControl.ScrollStateFullDrag;
System\Windows\Forms\UpDownBaseTests.cs (5)
3087public new const int ScrollStateAutoScrolling = ScrollableControl.ScrollStateAutoScrolling; 3089public new const int ScrollStateHScrollVisible = ScrollableControl.ScrollStateHScrollVisible; 3091public new const int ScrollStateVScrollVisible = ScrollableControl.ScrollStateVScrollVisible; 3093public new const int ScrollStateUserHasScrolled = ScrollableControl.ScrollStateUserHasScrolled; 3095public new const int ScrollStateFullDrag = ScrollableControl.ScrollStateFullDrag;
System\Windows\Forms\UserControlTests.cs (5)
1785public new const int ScrollStateAutoScrolling = ScrollableControl.ScrollStateAutoScrolling; 1787public new const int ScrollStateHScrollVisible = ScrollableControl.ScrollStateHScrollVisible; 1789public new const int ScrollStateVScrollVisible = ScrollableControl.ScrollStateVScrollVisible; 1791public new const int ScrollStateUserHasScrolled = ScrollableControl.ScrollStateUserHasScrolled; 1793public new const int ScrollStateFullDrag = ScrollableControl.ScrollStateFullDrag;
System\Windows\Forms\VScrollPropertiesTests.cs (3)
17public void VScrollProperties_Ctor_Control(ScrollableControl container) 32public SubVScrollProperties(ScrollableControl container) : base(container) 36public ScrollableControl ParentControlEntry => ParentControl;