In This Article

AutoHideTabGroup Class

Represents a group of auto-hide tabs.

public class AutoHideTabGroup : UIElement, IInputElement, IUIElement, ILogicalTreeNode, IDpiAwareElement, IDisposable
Inheritance:
object MarshalByRefObject DisposableObject LogicalTreeNodeBase UIElement object
Implements:
IInputElement IUIElement ILogicalTreeNode IDpiAwareElement IDisposable

Constructors

AutoHideTabGroup()

Initializes a new instance of the AutoHideTabGroup class.

public AutoHideTabGroup()

Remarks

The default constructor initializes all fields to their default values.

Properties

AutoHideTabStripPanel

Gets the AutoHideTabStripPanel that contains the element.

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

Property Value

AutoHideTabStripPanel:

The AutoHideTabStripPanel that contains the element.

SelectedToolWindow

Gets the ToolWindow related to the currently selected tab.

public ToolWindow SelectedToolWindow { get; }

Property Value

ToolWindow:

The ToolWindow related to the currently selected tab.

Tabs

Gets the collection of AutoHideTab objects in the control.

[Browsable(false)]
public AutoHideTabCollection Tabs { get; }

Property Value

AutoHideTabCollection:

A AutoHideTabCollection containing the AutoHideTab 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.

ChangeAllToolWindowsToDockable()

Changes all ToolWindow objects within the tab group to a DockableInsideHost state.

public void ChangeAllToolWindowsToDockable()

ContainsToolWindow(ToolWindow)

Returns whether the tab group contains the specified ToolWindow.

public bool ContainsToolWindow(ToolWindow toolWindow)
Parameter Type Description
toolWindow ToolWindow

The ToolWindow to search for.

Returns

bool:

true if the tab group contains the specified ToolWindow; otherwise, false.

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.

Dispose(bool)

Disposes any resources used by the object.

protected override void Dispose(bool disposing)
Parameter Type Description
disposing bool

Whether the object is being disposed.

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.

Inherited Members