Table of Contents

Class LayoutDocumentPaneControl

Namespace
HeBianGu.Control.Dock.Controls
Assembly
HeBianGu.Control.Dock.dll

Represents a control that contains multiple items that share the same space on the screen.

public class LayoutDocumentPaneControl : TabControlEx, IAnimatable, ISupportInitialize, IFrameworkInputElement, IInputElement, IQueryAmbient, IContainItemStorage, IAddChild, ILayoutControl
Inheritance
LayoutDocumentPaneControl
Implements
Inherited Members
Extension Methods

Properties

Model

Gets the layout model of this control.

[Bindable(false)]
public ILayoutElement Model { get; }

Property Value

ILayoutElement

Methods

OnItemsChanged(NotifyCollectionChangedEventArgs)

When the items change we remove any generated panel children and add any new ones as necessary

protected override void OnItemsChanged(NotifyCollectionChangedEventArgs e)

Parameters

e NotifyCollectionChangedEventArgs

OnMouseLeftButtonDown(MouseButtonEventArgs)

Invoked when an unhandled MouseLeftButtonDown routed event is raised on this element. Implement this method to add class handling for this event.

protected override void OnMouseLeftButtonDown(MouseButtonEventArgs e)

Parameters

e MouseButtonEventArgs

The MouseButtonEventArgs that contains the event data. The event data reports that the left mouse button was pressed.

OnMouseRightButtonDown(MouseButtonEventArgs)

Invoked when an unhandled MouseRightButtonDown routed event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event.

protected override void OnMouseRightButtonDown(MouseButtonEventArgs e)

Parameters

e MouseButtonEventArgs

The MouseButtonEventArgs that contains the event data. The event data reports that the right mouse button was pressed.

OnSelectionChanged(SelectionChangedEventArgs)

Invoked when an unhandled SelectionChanged routed event is raised on this element. Implement this method to add class handling for this event.

protected override void OnSelectionChanged(SelectionChangedEventArgs e)

Parameters

e SelectionChangedEventArgs

The SelectionChangedEventArgs that contains the event data. The event reports that the selection changed.

See Also