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)
24public partial class ToolStrip : ScrollableControl, IArrangedElement, ISupportToolStripPanel
System\Windows\Forms\Layout\Containers\ContainerControl.cs (1)
14public 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)
2562public class SubScrollableControl : ScrollableControl
73 instantiations of ScrollableControl
System.Windows.Forms.Tests (73)
System\Windows\Forms\BinaryFormat\WinFormsBinaryFormattedObjectTests.cs (1)
296{ new ScrollableControl(), new string[] { "DataContext: Object", "Tag: Object" } },
System\Windows\Forms\DockPaddingEdgesTests.cs (23)
24using ScrollableControl owner = new() 43using ScrollableControl owner = new(); 62using ScrollableControl owner = new() 83using ScrollableControl owner = new() 105using ScrollableControl owner = new() 126using ScrollableControl owner = new() 148using ScrollableControl owner = new() 169using ScrollableControl owner = new() 191using ScrollableControl owner = new() 212using ScrollableControl owner = new() 234using ScrollableControl owner = new() 252ScrollableControl owner = new() 304using ScrollableControl owner = new() 316using ScrollableControl owner = new() 329using ScrollableControl owner = new() 345using ScrollableControl owner = new() 362using ScrollableControl owner = new() 373using ScrollableControl owner = new() 385using ScrollableControl owner = new() 406using ScrollableControl owner = new() 427using ScrollableControl owner = new() 448using ScrollableControl owner = new() 469using ScrollableControl owner = new()
System\Windows\Forms\HScrollPropertiesTests.cs (1)
12yield return new object[] { new ScrollableControl() };
System\Windows\Forms\Layout\LayoutEngineTests.cs (2)
16engine.InitLayout(new ScrollableControl(), BoundsSpecified.All); 37Assert.False(engine.Layout(new ScrollableControl(), new LayoutEventArgs(new Component(), "affectedProperty")));
System\Windows\Forms\Layout\TableLayoutSettingsTypeConverterTests.cs (2)
183using ScrollableControl control = new(); 198using ScrollableControl control = new();
System\Windows\Forms\ScrollableControlTests.cs (21)
344using ScrollableControl control = new() 375using ScrollableControl control = new() 419using ScrollableControl control = new(); 443using ScrollableControl control = new(); 469using ScrollableControl control = new(); 477using ScrollableControl control = new() 494using ScrollableControl control = new(); 523using ScrollableControl control = new() 541using ScrollableControl control = new(); 574using ScrollableControl control = new() 618using ScrollableControl control = new() 660using ScrollableControl control = new(); 684using ScrollableControl control = new(); 794using ScrollableControl control = new(); 819using ScrollableControl control = new(); 857using ScrollableControl control = new() 872using ScrollableControl control = new() 2190using ScrollableControl control = new() 2210using ScrollableControl control = new(); 2237using ScrollableControl control = new() 2261using ScrollableControl control = new()
System\Windows\Forms\ScrollPropertiesTests.cs (22)
12yield return new object[] { new ScrollableControl() }; 35using ScrollableControl container = new(); 55using ScrollableControl container = new() 103using ScrollableControl container = new(); 119using ScrollableControl container = new() 152using ScrollableControl container = new(); 170using ScrollableControl container = new(); 186using ScrollableControl container = new() 219using ScrollableControl container = new(); 237using ScrollableControl container = new(); 283using ScrollableControl container = new(); 300using ScrollableControl container = new(); 317using ScrollableControl container = new() 342using ScrollableControl container = new(); 366using ScrollableControl container = new(); 385using ScrollableControl container = new() 427using ScrollableControl container = new(); 444using ScrollableControl container = new(); 470using ScrollableControl container = new() 513using ScrollableControl container = new(); 523using ScrollableControl container = new(); 543using ScrollableControl container = new()
System\Windows\Forms\VScrollPropertiesTests.cs (1)
13yield return new object[] { new ScrollableControl() };
271 references to ScrollableControl
System.Windows.Forms (27)
System\Windows\Forms\Control.cs (3)
7313if (this is not ScrollableControl 7391if (this is not ScrollableControl && !IsMirrored) 8100if (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)
691/// <see cref="ScrollableControl"/> checks if the layout bounds has been set in the <see cref="CommonProperties"/> 693/// 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)
1325private static ScrollableControl? FindScrollableParent(Control ctl) 1328while (current is not null and not ScrollableControl) 1333return (ScrollableControl?)current; 1341ScrollableControl? 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 (9)
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.Tests (6)
System\ComponentModel\Design\ByteViewerTests.cs (5)
1002public new const int ScrollStateAutoScrolling = ScrollableControl.ScrollStateAutoScrolling; 1004public new const int ScrollStateHScrollVisible = ScrollableControl.ScrollStateHScrollVisible; 1006public new const int ScrollStateVScrollVisible = ScrollableControl.ScrollStateVScrollVisible; 1008public new const int ScrollStateUserHasScrolled = ScrollableControl.ScrollStateUserHasScrolled; 1010public new const int ScrollStateFullDrag = ScrollableControl.ScrollStateFullDrag;
System\Windows\Forms\Design\DesignerFrameTests.cs (1)
65Control? designerRegion = controls.FirstOrDefault(c => c is ScrollableControl);
System.Windows.Forms.Tests (229)
System\Windows\Forms\ContainerControlTests.cs (5)
1403public new const int ScrollStateAutoScrolling = ScrollableControl.ScrollStateAutoScrolling; 1405public new const int ScrollStateHScrollVisible = ScrollableControl.ScrollStateHScrollVisible; 1407public new const int ScrollStateVScrollVisible = ScrollableControl.ScrollStateVScrollVisible; 1409public new const int ScrollStateUserHasScrolled = ScrollableControl.ScrollStateUserHasScrolled; 1411public new const int ScrollStateFullDrag = ScrollableControl.ScrollStateFullDrag;
System\Windows\Forms\Design\ComponentEditorFormTests.cs (5)
372public new const int ScrollStateAutoScrolling = ScrollableControl.ScrollStateAutoScrolling; 374public new const int ScrollStateHScrollVisible = ScrollableControl.ScrollStateHScrollVisible; 376public new const int ScrollStateVScrollVisible = ScrollableControl.ScrollStateVScrollVisible; 378public new const int ScrollStateUserHasScrolled = ScrollableControl.ScrollStateUserHasScrolled; 380public new const int ScrollStateFullDrag = ScrollableControl.ScrollStateFullDrag;
System\Windows\Forms\Design\ComponentEditorPageTests.cs (5)
871public new const int ScrollStateAutoScrolling = ScrollableControl.ScrollStateAutoScrolling; 873public new const int ScrollStateHScrollVisible = ScrollableControl.ScrollStateHScrollVisible; 875public new const int ScrollStateVScrollVisible = ScrollableControl.ScrollStateVScrollVisible; 877public new const int ScrollStateUserHasScrolled = ScrollableControl.ScrollStateUserHasScrolled; 879public new const int ScrollStateFullDrag = ScrollableControl.ScrollStateFullDrag;
System\Windows\Forms\DockPaddingEdgesConverterTests.cs (7)
16var converter = new ScrollableControl.DockPaddingEdgesConverter(); 19Assert.Equal(nameof(ScrollableControl.DockPaddingEdges.All), properties[0].Name); 20Assert.Equal(nameof(ScrollableControl.DockPaddingEdges.Left), properties[1].Name); 21Assert.Equal(nameof(ScrollableControl.DockPaddingEdges.Top), properties[2].Name); 22Assert.Equal(nameof(ScrollableControl.DockPaddingEdges.Right), properties[3].Name); 23Assert.Equal(nameof(ScrollableControl.DockPaddingEdges.Bottom), properties[4].Name); 29var converter = new ScrollableControl.DockPaddingEdgesConverter();
System\Windows\Forms\DockPaddingEdgesTests.cs (66)
24using ScrollableControl owner = new() 28ScrollableControl.DockPaddingEdges padding = owner.DockPadding; 43using ScrollableControl owner = new(); 44ScrollableControl.DockPaddingEdges padding = owner.DockPadding; 62using ScrollableControl owner = new() 67ScrollableControl.DockPaddingEdges padding = (ScrollableControl.DockPaddingEdges)original.Clone(); 83using ScrollableControl owner = new() 87ScrollableControl.DockPaddingEdges padding = owner.DockPadding; 105using ScrollableControl owner = new() 110ScrollableControl.DockPaddingEdges padding = (ScrollableControl.DockPaddingEdges)original.Clone(); 126using ScrollableControl owner = new() 130ScrollableControl.DockPaddingEdges padding = owner.DockPadding; 148using ScrollableControl owner = new() 153ScrollableControl.DockPaddingEdges padding = (ScrollableControl.DockPaddingEdges)original.Clone(); 169using ScrollableControl owner = new() 173ScrollableControl.DockPaddingEdges padding = owner.DockPadding; 191using ScrollableControl owner = new() 196ScrollableControl.DockPaddingEdges padding = (ScrollableControl.DockPaddingEdges)original.Clone(); 212using ScrollableControl owner = new() 216ScrollableControl.DockPaddingEdges padding = owner.DockPadding; 234using ScrollableControl owner = new() 239ScrollableControl.DockPaddingEdges padding = (ScrollableControl.DockPaddingEdges)original.Clone(); 250ScrollableControl.DockPaddingEdges CreatePadding(int left, int top, int right, int bottom) 252ScrollableControl owner = new() 259ScrollableControl.DockPaddingEdges CreateClonedPadding(int left, int top, int right, int bottom) 262return Assert.IsType<ScrollableControl.DockPaddingEdges>(cloneable.Clone()); 291public void DockPaddingEdges_Equals_Invoke_ReturnsExpected(ScrollableControl.DockPaddingEdges padding, object other, bool expected) 293if (other is ScrollableControl.DockPaddingEdges) 304using ScrollableControl owner = new() 308ScrollableControl.DockPaddingEdges padding = owner.DockPadding; 316using ScrollableControl owner = new() 321ScrollableControl.DockPaddingEdges padding = (ScrollableControl.DockPaddingEdges)original.Clone(); 329using ScrollableControl owner = new() 334ScrollableControl.DockPaddingEdges padding = (ScrollableControl.DockPaddingEdges)original.Clone(); 345using ScrollableControl owner = new() 351ScrollableControl.DockPaddingEdges padding = (ScrollableControl.DockPaddingEdges)original2.Clone(); 362using ScrollableControl owner = new() 366ScrollableControl.DockPaddingEdges padding = owner.DockPadding; 373using ScrollableControl owner = new() 378ScrollableControl.DockPaddingEdges padding = (ScrollableControl.DockPaddingEdges)original.Clone(); 385using ScrollableControl owner = new() 389ScrollableControl.DockPaddingEdges padding = owner.DockPadding; 391PropertyDescriptor property = properties[nameof(ScrollableControl.DockPaddingEdges.All)]; 406using ScrollableControl owner = new() 410ScrollableControl.DockPaddingEdges padding = owner.DockPadding; 412PropertyDescriptor property = properties[nameof(ScrollableControl.DockPaddingEdges.Left)]; 427using ScrollableControl owner = new() 431ScrollableControl.DockPaddingEdges padding = owner.DockPadding; 433PropertyDescriptor property = properties[nameof(ScrollableControl.DockPaddingEdges.Top)]; 448using ScrollableControl owner = new() 452ScrollableControl.DockPaddingEdges padding = owner.DockPadding; 454PropertyDescriptor property = properties[nameof(ScrollableControl.DockPaddingEdges.Right)]; 469using ScrollableControl owner = new() 473ScrollableControl.DockPaddingEdges padding = owner.DockPadding; 475PropertyDescriptor property = properties[nameof(ScrollableControl.DockPaddingEdges.Bottom)]; 490Assert.IsType<ScrollableControl.DockPaddingEdgesConverter>(TypeDescriptor.GetConverter(typeof(ScrollableControl.DockPaddingEdges)));
System\Windows\Forms\DomainUpDownTests.cs (5)
1456public new const int ScrollStateAutoScrolling = ScrollableControl.ScrollStateAutoScrolling; 1458public new const int ScrollStateHScrollVisible = ScrollableControl.ScrollStateHScrollVisible; 1460public new const int ScrollStateVScrollVisible = ScrollableControl.ScrollStateVScrollVisible; 1462public new const int ScrollStateUserHasScrolled = ScrollableControl.ScrollStateUserHasScrolled; 1464public new const int ScrollStateFullDrag = ScrollableControl.ScrollStateFullDrag;
System\Windows\Forms\FlowLayoutPanelTests.cs (5)
424public new const int ScrollStateAutoScrolling = ScrollableControl.ScrollStateAutoScrolling; 426public new const int ScrollStateHScrollVisible = ScrollableControl.ScrollStateHScrollVisible; 428public new const int ScrollStateVScrollVisible = ScrollableControl.ScrollStateVScrollVisible; 430public new const int ScrollStateUserHasScrolled = ScrollableControl.ScrollStateUserHasScrolled; 432public new const int ScrollStateFullDrag = ScrollableControl.ScrollStateFullDrag;
System\Windows\Forms\FormTests.cs (5)
2682public new const int ScrollStateAutoScrolling = ScrollableControl.ScrollStateAutoScrolling; 2684public new const int ScrollStateHScrollVisible = ScrollableControl.ScrollStateHScrollVisible; 2686public new const int ScrollStateVScrollVisible = ScrollableControl.ScrollStateVScrollVisible; 2688public new const int ScrollStateUserHasScrolled = ScrollableControl.ScrollStateUserHasScrolled; 2690public new const int ScrollStateFullDrag = ScrollableControl.ScrollStateFullDrag;
System\Windows\Forms\HScrollPropertiesTests.cs (3)
18public void HScrollProperties_Ctor_Control(ScrollableControl container) 33public SubHScrollProperties(ScrollableControl container) : base(container) 37public ScrollableControl ParentControlEntry => ParentControl;
System\Windows\Forms\Layout\TableLayoutSettingsTypeConverterTests.cs (2)
183using ScrollableControl control = new(); 198using ScrollableControl control = new();
System\Windows\Forms\MdiControlStripTests.cs (5)
342public new const int ScrollStateAutoScrolling = ScrollableControl.ScrollStateAutoScrolling; 344public new const int ScrollStateHScrollVisible = ScrollableControl.ScrollStateHScrollVisible; 346public new const int ScrollStateVScrollVisible = ScrollableControl.ScrollStateVScrollVisible; 348public new const int ScrollStateUserHasScrolled = ScrollableControl.ScrollStateUserHasScrolled; 350public new const int ScrollStateFullDrag = ScrollableControl.ScrollStateFullDrag;
System\Windows\Forms\MenuStripTests.cs (5)
838public new const int ScrollStateAutoScrolling = ScrollableControl.ScrollStateAutoScrolling; 840public new const int ScrollStateHScrollVisible = ScrollableControl.ScrollStateHScrollVisible; 842public new const int ScrollStateVScrollVisible = ScrollableControl.ScrollStateVScrollVisible; 844public new const int ScrollStateUserHasScrolled = ScrollableControl.ScrollStateUserHasScrolled; 846public new const int ScrollStateFullDrag = ScrollableControl.ScrollStateFullDrag;
System\Windows\Forms\PanelTests.cs (5)
1146public new const int ScrollStateAutoScrolling = ScrollableControl.ScrollStateAutoScrolling; 1148public new const int ScrollStateHScrollVisible = ScrollableControl.ScrollStateHScrollVisible; 1150public new const int ScrollStateVScrollVisible = ScrollableControl.ScrollStateVScrollVisible; 1152public new const int ScrollStateUserHasScrolled = ScrollableControl.ScrollStateUserHasScrolled; 1154public new const int ScrollStateFullDrag = ScrollableControl.ScrollStateFullDrag;
System\Windows\Forms\PropertyGridTests.cs (5)
4133public new const int ScrollStateAutoScrolling = ScrollableControl.ScrollStateAutoScrolling; 4135public new const int ScrollStateHScrollVisible = ScrollableControl.ScrollStateHScrollVisible; 4137public new const int ScrollStateVScrollVisible = ScrollableControl.ScrollStateVScrollVisible; 4139public new const int ScrollStateUserHasScrolled = ScrollableControl.ScrollStateUserHasScrolled; 4141public new const int ScrollStateFullDrag = ScrollableControl.ScrollStateFullDrag;
System\Windows\Forms\ScrollableControlTests.cs (34)
344using ScrollableControl control = new() 375using ScrollableControl control = new() 418PropertyDescriptor property = TypeDescriptor.GetProperties(typeof(ScrollableControl))[nameof(ScrollableControl.AutoScrollMargin)]; 419using ScrollableControl control = new(); 442PropertyDescriptor property = TypeDescriptor.GetProperties(typeof(ScrollableControl))[nameof(ScrollableControl.AutoScrollMargin)]; 443using ScrollableControl control = new(); 469using ScrollableControl control = new(); 477using ScrollableControl control = new() 494using ScrollableControl control = new(); 523using ScrollableControl control = new() 541using ScrollableControl control = new(); 574using ScrollableControl control = new() 618using ScrollableControl control = new() 659PropertyDescriptor property = TypeDescriptor.GetProperties(typeof(ScrollableControl))[nameof(ScrollableControl.AutoScrollMinSize)]; 660using ScrollableControl control = new(); 683PropertyDescriptor property = TypeDescriptor.GetProperties(typeof(ScrollableControl))[nameof(ScrollableControl.AutoScrollMinSize)]; 684using ScrollableControl control = new(); 794using ScrollableControl control = new(); 819using ScrollableControl control = new(); 857using ScrollableControl control = new() 872using ScrollableControl control = new() 2190using ScrollableControl control = new() 2210using ScrollableControl control = new(); 2237using ScrollableControl control = new() 2261using ScrollableControl control = new() 2564public new const int ScrollStateAutoScrolling = ScrollableControl.ScrollStateAutoScrolling; 2566public new const int ScrollStateHScrollVisible = ScrollableControl.ScrollStateHScrollVisible; 2568public new const int ScrollStateVScrollVisible = ScrollableControl.ScrollStateVScrollVisible; 2570public new const int ScrollStateUserHasScrolled = ScrollableControl.ScrollStateUserHasScrolled; 2572public new const int ScrollStateFullDrag = ScrollableControl.ScrollStateFullDrag;
System\Windows\Forms\ScrollPropertiesTests.cs (24)
18public void ScrollProperties_Ctor_Control(ScrollableControl container) 35using ScrollableControl container = new(); 55using ScrollableControl container = new() 103using ScrollableControl container = new(); 119using ScrollableControl container = new() 152using ScrollableControl container = new(); 170using ScrollableControl container = new(); 186using ScrollableControl container = new() 219using ScrollableControl container = new(); 237using ScrollableControl container = new(); 283using ScrollableControl container = new(); 300using ScrollableControl container = new(); 317using ScrollableControl container = new() 342using ScrollableControl container = new(); 366using ScrollableControl container = new(); 385using ScrollableControl container = new() 427using ScrollableControl container = new(); 444using ScrollableControl container = new(); 470using ScrollableControl container = new() 513using ScrollableControl container = new(); 523using ScrollableControl container = new(); 543using ScrollableControl container = new() 583public SubScrollProperties(ScrollableControl container) : base(container) 587public new ScrollableControl ParentControl => base.ParentControl;
System\Windows\Forms\StatusStripTests.cs (5)
1264public new const int ScrollStateAutoScrolling = ScrollableControl.ScrollStateAutoScrolling; 1266public new const int ScrollStateHScrollVisible = ScrollableControl.ScrollStateHScrollVisible; 1268public new const int ScrollStateVScrollVisible = ScrollableControl.ScrollStateVScrollVisible; 1270public new const int ScrollStateUserHasScrolled = ScrollableControl.ScrollStateUserHasScrolled; 1272public new const int ScrollStateFullDrag = ScrollableControl.ScrollStateFullDrag;
System\Windows\Forms\TableLayoutPanelTests.cs (5)
2163public new const int ScrollStateAutoScrolling = ScrollableControl.ScrollStateAutoScrolling; 2165public new const int ScrollStateHScrollVisible = ScrollableControl.ScrollStateHScrollVisible; 2167public new const int ScrollStateVScrollVisible = ScrollableControl.ScrollStateVScrollVisible; 2169public new const int ScrollStateUserHasScrolled = ScrollableControl.ScrollStateUserHasScrolled; 2171public new const int ScrollStateFullDrag = ScrollableControl.ScrollStateFullDrag;
System\Windows\Forms\TabPageTests.cs (5)
5219public new const int ScrollStateAutoScrolling = ScrollableControl.ScrollStateAutoScrolling; 5221public new const int ScrollStateHScrollVisible = ScrollableControl.ScrollStateHScrollVisible; 5223public new const int ScrollStateVScrollVisible = ScrollableControl.ScrollStateVScrollVisible; 5225public new const int ScrollStateUserHasScrolled = ScrollableControl.ScrollStateUserHasScrolled; 5227public new const int ScrollStateFullDrag = ScrollableControl.ScrollStateFullDrag;
System\Windows\Forms\ToolStripContentPanelTests.cs (5)
2008public new const int ScrollStateAutoScrolling = ScrollableControl.ScrollStateAutoScrolling; 2010public new const int ScrollStateHScrollVisible = ScrollableControl.ScrollStateHScrollVisible; 2012public new const int ScrollStateVScrollVisible = ScrollableControl.ScrollStateVScrollVisible; 2014public new const int ScrollStateUserHasScrolled = ScrollableControl.ScrollStateUserHasScrolled; 2016public new const int ScrollStateFullDrag = ScrollableControl.ScrollStateFullDrag;
System\Windows\Forms\ToolStripDropDownTests.cs (5)
5082public new const int ScrollStateAutoScrolling = ScrollableControl.ScrollStateAutoScrolling; 5084public new const int ScrollStateHScrollVisible = ScrollableControl.ScrollStateHScrollVisible; 5086public new const int ScrollStateVScrollVisible = ScrollableControl.ScrollStateVScrollVisible; 5088public new const int ScrollStateUserHasScrolled = ScrollableControl.ScrollStateUserHasScrolled; 5090public new const int ScrollStateFullDrag = ScrollableControl.ScrollStateFullDrag;
System\Windows\Forms\ToolStripTests.cs (5)
7479public new const int ScrollStateAutoScrolling = ScrollableControl.ScrollStateAutoScrolling; 7481public new const int ScrollStateHScrollVisible = ScrollableControl.ScrollStateHScrollVisible; 7483public new const int ScrollStateVScrollVisible = ScrollableControl.ScrollStateVScrollVisible; 7485public new const int ScrollStateUserHasScrolled = ScrollableControl.ScrollStateUserHasScrolled; 7487public new const int ScrollStateFullDrag = ScrollableControl.ScrollStateFullDrag;
System\Windows\Forms\UpDownBaseTests.cs (5)
3089public new const int ScrollStateAutoScrolling = ScrollableControl.ScrollStateAutoScrolling; 3091public new const int ScrollStateHScrollVisible = ScrollableControl.ScrollStateHScrollVisible; 3093public new const int ScrollStateVScrollVisible = ScrollableControl.ScrollStateVScrollVisible; 3095public new const int ScrollStateUserHasScrolled = ScrollableControl.ScrollStateUserHasScrolled; 3097public new const int ScrollStateFullDrag = ScrollableControl.ScrollStateFullDrag;
System\Windows\Forms\UserControlTests.cs (5)
1787public new const int ScrollStateAutoScrolling = ScrollableControl.ScrollStateAutoScrolling; 1789public new const int ScrollStateHScrollVisible = ScrollableControl.ScrollStateHScrollVisible; 1791public new const int ScrollStateVScrollVisible = ScrollableControl.ScrollStateVScrollVisible; 1793public new const int ScrollStateUserHasScrolled = ScrollableControl.ScrollStateUserHasScrolled; 1795public new const int ScrollStateFullDrag = ScrollableControl.ScrollStateFullDrag;
System\Windows\Forms\VScrollPropertiesTests.cs (3)
19public void VScrollProperties_Ctor_Control(ScrollableControl container) 34public SubVScrollProperties(ScrollableControl container) : base(container) 38public ScrollableControl ParentControlEntry => ParentControl;