Table of Contents

Class LayoutItem

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

Provides a WPF framework-level set of properties, events, and methods for Windows Presentation Foundation (WPF) elements. This class represents the provided WPF framework-level implementation that is built on the WPF core-level APIs that are defined by UIElement.

public abstract class LayoutItem : FrameworkElement, IAnimatable, ISupportInitialize, IFrameworkInputElement, IInputElement, IQueryAmbient
Inheritance
LayoutItem
Implements
Derived
Inherited Members
Extension Methods

Fields

ActivateCommandProperty

ActivateCommand dependency property.

public static readonly DependencyProperty ActivateCommandProperty

Field Value

DependencyProperty

CanCloseProperty

CanClose dependency property.

public static readonly DependencyProperty CanCloseProperty

Field Value

DependencyProperty

CanFloatProperty

CanFloat dependency property.

public static readonly DependencyProperty CanFloatProperty

Field Value

DependencyProperty

CloseAllButThisCommandProperty

CloseAllButThisCommand dependency property.

public static readonly DependencyProperty CloseAllButThisCommandProperty

Field Value

DependencyProperty

CloseAllCommandProperty

CloseAllCommand dependency property.

public static readonly DependencyProperty CloseAllCommandProperty

Field Value

DependencyProperty

CloseCommandProperty

CloseCommand dependency property.

public static readonly DependencyProperty CloseCommandProperty

Field Value

DependencyProperty

ContentIdProperty

ContentId dependency property.

public static readonly DependencyProperty ContentIdProperty

Field Value

DependencyProperty

DockAsDocumentCommandProperty

DockAsDocumentCommand dependency property.

public static readonly DependencyProperty DockAsDocumentCommandProperty

Field Value

DependencyProperty

FloatCommandProperty

FloatCommand dependency property.

public static readonly DependencyProperty FloatCommandProperty

Field Value

DependencyProperty

IconSourceProperty

IconSource dependency property.

public static readonly DependencyProperty IconSourceProperty

Field Value

DependencyProperty

IsActiveProperty

IsActive dependency property.

public static readonly DependencyProperty IsActiveProperty

Field Value

DependencyProperty

IsSelectedProperty

IsSelected dependency property.

public static readonly DependencyProperty IsSelectedProperty

Field Value

DependencyProperty

MoveToNextTabGroupCommandProperty

MoveToNextTabGroupCommand dependency property.

public static readonly DependencyProperty MoveToNextTabGroupCommandProperty

Field Value

DependencyProperty

MoveToPreviousTabGroupCommandProperty

MoveToPreviousTabGroupCommand dependency property.

public static readonly DependencyProperty MoveToPreviousTabGroupCommandProperty

Field Value

DependencyProperty

NewHorizontalTabGroupCommandProperty

NewHorizontalTabGroupCommand dependency property.

public static readonly DependencyProperty NewHorizontalTabGroupCommandProperty

Field Value

DependencyProperty

NewVerticalTabGroupCommandProperty

NewVerticalTabGroupCommand dependency property.

public static readonly DependencyProperty NewVerticalTabGroupCommandProperty

Field Value

DependencyProperty

TitleProperty

Title dependency property.

public static readonly DependencyProperty TitleProperty

Field Value

DependencyProperty

Properties

ActivateCommand

Gets/sets the command to execute when user wants to activate a content (either a Document or an Anchorable).

[Bindable(true)]
public ICommand ActivateCommand { get; set; }

Property Value

ICommand

CanClose

Gets/sets wetherthe item can be closed or not.

[Bindable(true)]
public bool CanClose { get; set; }

Property Value

bool

CanFloat

Gets/sets wether the user can move the layout element dragging it to another position.

[Bindable(true)]
public bool CanFloat { get; set; }

Property Value

bool

CloseAllButThisCommand

Gets/sets the the 'Close All But This' command.

[Bindable(true)]
public ICommand CloseAllButThisCommand { get; set; }

Property Value

ICommand

CloseAllCommand

Gets/sets the 'Close All' command.

[Bindable(true)]
public ICommand CloseAllCommand { get; set; }

Property Value

ICommand

CloseCommand

Gets/sets the command to execute when user click the document close button.

[Bindable(true)]
public ICommand CloseCommand { get; set; }

Property Value

ICommand

ContentId

Gets/sets the content id used to retrieve content when deserializing layouts.

[Bindable(true)]
public string ContentId { get; set; }

Property Value

string

DockAsDocumentCommand

Gets/sets the command to execute when user click the DockAsDocument button.

[Bindable(true)]
public ICommand DockAsDocumentCommand { get; set; }

Property Value

ICommand

Remarks

By default this command move the anchorable inside the last focused document pane.

FloatCommand

Gets/sets the command to execute when the user clicks the float button.

[Bindable(true)]
public ICommand FloatCommand { get; set; }

Property Value

ICommand

Remarks

By default this command move the anchorable inside new floating window.

IconSource

Gets/sets the icon associated with the item.

[Bindable(true)]
public ImageSource IconSource { get; set; }

Property Value

ImageSource

IsActive

Gets/sets wether the item is active in the UI or not.

[Bindable(true)]
public bool IsActive { get; set; }

Property Value

bool

IsSelected

Gets/sets wether the item is selected inside its container or not.

[Bindable(true)]
public bool IsSelected { get; set; }

Property Value

bool

LayoutElement

public LayoutContent LayoutElement { get; }

Property Value

LayoutContent

Model

public object Model { get; }

Property Value

object

MoveToNextTabGroupCommand

Gets/sets the move to next tab group command.

[Bindable(true)]
public ICommand MoveToNextTabGroupCommand { get; set; }

Property Value

ICommand

MoveToPreviousTabGroupCommand

Gets/sets the move to previous tab group command.

[Bindable(true)]
public ICommand MoveToPreviousTabGroupCommand { get; set; }

Property Value

ICommand

NewHorizontalTabGroupCommand

Gets/sets the new horizontal tab group command.

[Bindable(true)]
public ICommand NewHorizontalTabGroupCommand { get; set; }

Property Value

ICommand

NewVerticalTabGroupCommand

Gets/sets the new vertical tab group command.

[Bindable(true)]
public ICommand NewVerticalTabGroupCommand { get; set; }

Property Value

ICommand

Title

Gets/sets the the title of the element.

[Bindable(true)]
public string Title { get; set; }

Property Value

string

View

public ContentPresenter View { get; }

Property Value

ContentPresenter

Methods

CanExecuteDockAsDocumentCommand()

protected virtual bool CanExecuteDockAsDocumentCommand()

Returns

bool

ClearDefaultBindings()

protected virtual void ClearDefaultBindings()

Close()

protected abstract void Close()

InitDefaultCommands()

protected virtual void InitDefaultCommands()

OnActivateCommandChanged(DependencyPropertyChangedEventArgs)

Provides derived classes an opportunity to handle changes to the ActivateCommand property.

protected virtual void OnActivateCommandChanged(DependencyPropertyChangedEventArgs e)

Parameters

e DependencyPropertyChangedEventArgs

OnCanCloseChanged(DependencyPropertyChangedEventArgs)

Provides derived classes an opportunity to handle changes to the CanClose property.

protected virtual void OnCanCloseChanged(DependencyPropertyChangedEventArgs e)

Parameters

e DependencyPropertyChangedEventArgs

OnCanFloatChanged(DependencyPropertyChangedEventArgs)

Provides derived classes an opportunity to handle changes to the CanFloat property.

protected virtual void OnCanFloatChanged(DependencyPropertyChangedEventArgs e)

Parameters

e DependencyPropertyChangedEventArgs

OnCloseAllButThisCommandChanged(DependencyPropertyChangedEventArgs)

Provides derived classes an opportunity to handle changes to the CloseAllButThisCommand property.

protected virtual void OnCloseAllButThisCommandChanged(DependencyPropertyChangedEventArgs e)

Parameters

e DependencyPropertyChangedEventArgs

OnCloseAllCommandChanged(DependencyPropertyChangedEventArgs)

Provides derived classes an opportunity to handle changes to the CloseAllCommand property.

protected virtual void OnCloseAllCommandChanged(DependencyPropertyChangedEventArgs e)

Parameters

e DependencyPropertyChangedEventArgs

OnCloseCommandChanged(DependencyPropertyChangedEventArgs)

Provides derived classes an opportunity to handle changes to the CloseCommand property.

protected virtual void OnCloseCommandChanged(DependencyPropertyChangedEventArgs e)

Parameters

e DependencyPropertyChangedEventArgs

OnContentIdChanged(DependencyPropertyChangedEventArgs)

Provides derived classes an opportunity to handle changes to the ContentId property.

protected virtual void OnContentIdChanged(DependencyPropertyChangedEventArgs e)

Parameters

e DependencyPropertyChangedEventArgs

OnDockAsDocumentCommandChanged(DependencyPropertyChangedEventArgs)

Provides derived classes an opportunity to handle changes to the DockAsDocumentCommand property.

protected virtual void OnDockAsDocumentCommandChanged(DependencyPropertyChangedEventArgs e)

Parameters

e DependencyPropertyChangedEventArgs

OnFloatCommandChanged(DependencyPropertyChangedEventArgs)

Provides derived classes an opportunity to handle changes to the FloatCommand property.

protected virtual void OnFloatCommandChanged(DependencyPropertyChangedEventArgs e)

Parameters

e DependencyPropertyChangedEventArgs

OnIconSourceChanged(DependencyPropertyChangedEventArgs)

Provides derived classes an opportunity to handle changes to the IconSource property.

protected virtual void OnIconSourceChanged(DependencyPropertyChangedEventArgs e)

Parameters

e DependencyPropertyChangedEventArgs

OnIsActiveChanged(DependencyPropertyChangedEventArgs)

Provides derived classes an opportunity to handle changes to the IsActive property.

protected virtual void OnIsActiveChanged(DependencyPropertyChangedEventArgs e)

Parameters

e DependencyPropertyChangedEventArgs

OnIsSelectedChanged(DependencyPropertyChangedEventArgs)

Provides derived classes an opportunity to handle changes to the IsSelected property.

protected virtual void OnIsSelectedChanged(DependencyPropertyChangedEventArgs e)

Parameters

e DependencyPropertyChangedEventArgs

OnMoveToNextTabGroupCommandChanged(DependencyPropertyChangedEventArgs)

Provides derived classes an opportunity to handle changes to the MoveToNextTabGroupCommand property.

protected virtual void OnMoveToNextTabGroupCommandChanged(DependencyPropertyChangedEventArgs e)

Parameters

e DependencyPropertyChangedEventArgs

OnMoveToPreviousTabGroupCommandChanged(DependencyPropertyChangedEventArgs)

Provides derived classes an opportunity to handle changes to the MoveToPreviousTabGroupCommand property.

protected virtual void OnMoveToPreviousTabGroupCommandChanged(DependencyPropertyChangedEventArgs e)

Parameters

e DependencyPropertyChangedEventArgs

OnNewHorizontalTabGroupCommandChanged(DependencyPropertyChangedEventArgs)

Provides derived classes an opportunity to handle changes to the NewHorizontalTabGroupCommand property.

protected virtual void OnNewHorizontalTabGroupCommandChanged(DependencyPropertyChangedEventArgs e)

Parameters

e DependencyPropertyChangedEventArgs

OnNewVerticalTabGroupCommandChanged(DependencyPropertyChangedEventArgs)

Provides derived classes an opportunity to handle changes to the NewVerticalTabGroupCommand property.

protected virtual void OnNewVerticalTabGroupCommandChanged(DependencyPropertyChangedEventArgs e)

Parameters

e DependencyPropertyChangedEventArgs

OnTitleChanged(DependencyPropertyChangedEventArgs)

Provides derived classes an opportunity to handle changes to the Title property.

protected virtual void OnTitleChanged(DependencyPropertyChangedEventArgs e)

Parameters

e DependencyPropertyChangedEventArgs

OnVisibilityChanged()

protected virtual void OnVisibilityChanged()

SetDefaultBindings()

protected virtual void SetDefaultBindings()

See Also