In This Article

AutoHideTabStripPanel Class

Represents an auto-hide tabstrip panel.

public class AutoHideTabStripPanel : UIControl, IUIControl, IUIElement, ILogicalTreeNode, IDpiAwareElement, IDisposable, IOrientedElement
Inheritance:
object MarshalByRefObject Component Control ScrollableControl UIControl object
Implements:
IUIControl IUIElement ILogicalTreeNode IDpiAwareElement IDisposable IOrientedElement

Constructors

AutoHideTabStripPanel()

Initializes a new instance of the AutoHideTabStripPanel class.

public AutoHideTabStripPanel()

Remarks

The default constructor initializes all fields to their default values.

Properties

DisplayRectangle

Gets the rectangle that represents the display area of the control.

public override Rectangle DisplayRectangle { get; }

Property Value

Rectangle:

A Rectangle that represents the display area of the control.

DockManager

Gets or sets the DockManager that is managing the dock object.

[Browsable(false)]
public DockManager DockManager { get; set; }

Property Value

DockManager:

The DockManager that is managing the dock object.

Orientation

Gets the orientation of the tabs in the control.

[Browsable(false)]
public Orientation Orientation { get; }

Property Value

Orientation:

A Orientation that specifies the orientation.

TabGroups

Gets the collection of AutoHideTabGroup objects in the control.

[Browsable(false)]
public AutoHideTabGroupCollection TabGroups { get; }

Property Value

AutoHideTabGroupCollection:

A AutoHideTabGroupCollection containing the AutoHideTabGroup objects in the control.

Methods

ArrangeOverride(Size)

Positions child elements and determines an arrange size.

protected override Size ArrangeOverride(Size finalSize)
Parameter Type Description
finalSize Size

The final area within the parent that this element should use to arrange itself and its children.

Returns

Size:

The actual size used.

Remarks

Element authors should override this method, call Arrange on each visible child element and position each child element. It is required that a parent element calls Arrange on each child or they won't be rendered.

CreateChildren()

Invoked when the collection of child elements is to be created.

protected override IList CreateChildren()

Returns

IList:

The IList that should be assigned to the Children property.

Remarks

By default no child collection is created.

GetSidesFromDockStyle(DockStyle)

Gets the Sides value that corresponds to the specified DockStyle.

public static Sides GetSidesFromDockStyle(DockStyle dockStyle)
Parameter Type Description
dockStyle DockStyle

The DockStyle to examine.

Returns

Sides:

The Sides value that corresponds to the specified DockStyle.

HitTest(Point)

Returns the AutoHideTab that is at the Point.

public AutoHideTab HitTest(Point point)
Parameter Type Description
point Point

The Point to hit test.

Returns

AutoHideTab:

The AutoHideTab that is at the Point.

MeasureOverride(Graphics, Size)

Measures the size in layout required for child elements and determines a size for the element itself.

protected override Size MeasureOverride(Graphics g, Size availableSize)
Parameter Type Description
g Graphics

The Graphics object to use for measurement.

availableSize Size

The available size that this element can give to child elements. Infinity can be specified as a value to indicate that the element will size to whatever content is available.

Returns

Size:

The size that this element determines it needs during layout, based on its calculations of child element sizes.

Remarks

Element authors should override this method, call Measure on each visible child element and determine the total size required.

OnDragLeave(EventArgs)

Raises the DragOver event.

protected override void OnDragLeave(EventArgs e)
Parameter Type Description
e EventArgs

An EventArgs that contains the event data.

OnDragOver(DragEventArgs)

Raises the DragOver event.

protected override void OnDragOver(DragEventArgs e)
Parameter Type Description
e DragEventArgs

A DragEventArgs that contains the event data.

OnRender(PaintEventArgs)

Renders the element.

protected override void OnRender(PaintEventArgs e)
Parameter Type Description
e PaintEventArgs

A PaintEventArgs that contains the event data.

Inherited Members