Class NavigatorWindow
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
DocumentsProperty
public static readonly DependencyProperty DocumentsProperty
Field Value
SelectedAnchorableProperty
SelectedAnchorable dependency property.
public static readonly DependencyProperty SelectedAnchorableProperty
Field Value
SelectedDocumentProperty
SelectedDocument dependency property.
public static readonly DependencyProperty SelectedDocumentProperty
Field Value
Properties
Anchorables
Gets the list of anchorables managed in the framework.
[Bindable(true)]
public IEnumerable<LayoutAnchorableItem> Anchorables { get; }
Property Value
Documents
Gets the list of documents managed in this framework.
[Bindable(true)]
public LayoutDocumentItem[] Documents { get; }
Property Value
SelectedAnchorable
Gets/sets the currently selected anchorable.
[Bindable(true)]
public LayoutAnchorableItem SelectedAnchorable { get; set; }
Property Value
SelectedDocument
Gets/sets the currently selected document.
[Bindable(true)]
public LayoutDocumentItem SelectedDocument { get; set; }
Property Value
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
KeyEventArgsThe 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
KeyEventArgsThe 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
OnSelectedDocumentChanged(DependencyPropertyChangedEventArgs)
Provides derived classes an opportunity to handle changes to the SelectedDocument property.
protected virtual void OnSelectedDocumentChanged(DependencyPropertyChangedEventArgs e)
Parameters
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.