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