3 types derived from ScrollableControl
System.Windows.Forms (3)
winforms\Managed\System\WinForms\ContainerControl.cs (1)
35public class ContainerControl : ScrollableControl, IContainerControl {
winforms\Managed\System\WinForms\Panel.cs (1)
37public class Panel : ScrollableControl {
winforms\Managed\System\WinForms\ToolStrip.cs (1)
45public class ToolStrip : System.Windows.Forms.ScrollableControl,
25 references to ScrollableControl
System.Windows.Forms (25)
winforms\Managed\System\WinForms\ContainerControl.cs (4)
1326private ScrollableControl FindScrollableParent(Control ctl) { 1328while (current != null && !(current is ScrollableControl)) { 1332return(ScrollableControl)current; 1340ScrollableControl scrollParent = FindScrollableParent(last);
winforms\Managed\System\WinForms\Control.cs (5)
8795if (!(this is ScrollableControl) && !IsMirrored && GetState2(STATE2_SETSCROLLPOS) && !GetState2(STATE2_HAVEINVOKED)) { 8829if (!(this is ScrollableControl) && !IsMirrored) { 9619ScrollableControl scrollControl = this as ScrollableControl; 9621scrollLocation = ((ScrollableControl)this).AutoScrollPosition;
winforms\Managed\System\WinForms\HScrollProperties.cs (1)
30public HScrollProperties(ScrollableControl container) : base(container) {
winforms\Managed\System\WinForms\ScrollableControl.cs (10)
107/// Initializes a new instance of the <see cref='System.Windows.Forms.ScrollableControl'/> class. 906Debug.WriteLineIf(ScrollableControl.AutoScrolling.TraceVerbose, "ScrollControlIntoView(" + activeControl.GetType().FullName + ")"); 917Debug.WriteLineIf(ScrollableControl.AutoScrolling.TraceVerbose, "Calculating..."); 953Debug.WriteLineIf(ScrollableControl.AutoScrolling.TraceVerbose, "not direct child, original bounds: " + bounds); 956Debug.WriteLineIf(ScrollableControl.AutoScrolling.TraceVerbose, "adjusted bounds: " + bounds); 1184/// Indicates whether the <see cref='System.Windows.Forms.ScrollableControl.AutoScrollPosition'/> 1200/// Indicates whether the <see cref='System.Windows.Forms.ScrollableControl.AutoScrollMargin'/> property should be persisted. 1209/// Indicates whether the <see cref='System.Windows.Forms.ScrollableControl.AutoScrollMinSize'/> 1502private ScrollableControl owner; 1512internal DockPaddingEdges(ScrollableControl owner) {
winforms\Managed\System\WinForms\ScrollProperties.cs (3)
37private ScrollableControl parent; 39protected ScrollableControl ParentControl { 59protected ScrollProperties(ScrollableControl container) {
winforms\Managed\System\WinForms\VScrollProperties.cs (1)
27public VScrollProperties(ScrollableControl container) : base(container) {
winforms\Managed\System\WinForms\WebBrowserContainer.cs (1)
325ScrollableControl f = ctl.ContainingControl;