Table of Contents

Class NavigatorWindow

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

Provides the ability to create, configure, show, and manage the lifetime of windows and dialog boxes.

[TemplatePart(Name = "PART_AnchorableListBox", Type = typeof(ListBox))]
[TemplatePart(Name = "PART_DocumentListBox", Type = typeof(ListBox))]
public class NavigatorWindow : Window, IAnimatable, ISupportInitialize, IFrameworkInputElement, IInputElement, IQueryAmbient, IAddChild
Inheritance
NavigatorWindow
Implements
Inherited Members
Extension Methods

Fields

AnchorablesProperty

public static readonly DependencyProperty AnchorablesProperty

Field Value

DependencyProperty

DocumentsProperty

public static readonly DependencyProperty DocumentsProperty

Field Value

DependencyProperty

SelectedAnchorableProperty

SelectedAnchorable dependency property.

public static readonly DependencyProperty SelectedAnchorableProperty

Field Value

DependencyProperty

SelectedDocumentProperty

SelectedDocument dependency property.

public static readonly DependencyProperty SelectedDocumentProperty

Field Value

DependencyProperty

Properties

Anchorables

Gets the list of anchorables managed in the framework.

[Bindable(true)]
public IEnumerable<LayoutAnchorableItem> Anchorables { get; }

Property Value

IEnumerable<LayoutAnchorableItem>

Documents

Gets the list of documents managed in this framework.

[Bindable(true)]
public LayoutDocumentItem[] Documents { get; }

Property Value

LayoutDocumentItem[]

SelectedAnchorable

Gets/sets the currently selected anchorable.

[Bindable(true)]
public LayoutAnchorableItem SelectedAnchorable { get; set; }

Property Value

LayoutAnchorableItem

SelectedDocument

Gets/sets the currently selected document.

[Bindable(true)]
public LayoutDocumentItem SelectedDocument { get; set; }

Property Value

LayoutDocumentItem

Methods

OnApplyTemplate()

When overridden in a derived class, is invoked whenever application code or internal processes call ApplyTemplate().

public override void OnApplyTemplate()

OnKeyDown(KeyEventArgs)

Invoked when an unhandled System.Windows.Input.Keyboard.KeyDown attached 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 OnKeyDown(KeyEventArgs e)

Parameters

e KeyEventArgs

The KeyEventArgs that contains the event data.

OnKeyUp(KeyEventArgs)

Invoked when an unhandled System.Windows.Input.Keyboard.KeyUp attached 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 OnKeyUp(KeyEventArgs e)

Parameters

e KeyEventArgs

The KeyEventArgs that contains the event data.

OnSelectedAnchorableChanged(DependencyPropertyChangedEventArgs)

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

protected virtual void OnSelectedAnchorableChanged(DependencyPropertyChangedEventArgs e)

Parameters

e DependencyPropertyChangedEventArgs

OnSelectedDocumentChanged(DependencyPropertyChangedEventArgs)

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

protected virtual void OnSelectedDocumentChanged(DependencyPropertyChangedEventArgs e)

Parameters

e DependencyPropertyChangedEventArgs

SetAnchorables(IEnumerable<LayoutAnchorableItem>)

Provides a secure method for setting the Anchorables property. This dependency property indicates the list of anchorables.

protected void SetAnchorables(IEnumerable<LayoutAnchorableItem> value)

Parameters

value IEnumerable<LayoutAnchorableItem>

The new value for the property.

SetDocuments(LayoutDocumentItem[])

Provides a secure method for setting the Documents property. This dependency property indicates the list of documents.

protected void SetDocuments(LayoutDocumentItem[] value)

Parameters

value LayoutDocumentItem[]

The new value for the property.

See Also