'Declaration Public Shared ReadOnly NavigatorTitleProperty As DependencyProperty
public static readonly DependencyProperty NavigatorTitleProperty
Imports Infragistics.Windows.DockManager Private Sub InitializeDmWithNavInfo(ByVal dockManager As XamDockManager) Dim split As New SplitPane() Dim cp As New ContentPane() cp.Header = "Nav Info" cp.Content = "Press Ctrl-Tab or Alt-F7 to show the navigator" ' The navigator description and title are ' only used within the pane navigator. To ' see where these are used, press ctrl-tab ' or alt-f7 to show the pane navigator. cp.NavigatorDescription = "Provides additional information to the end user about the pane." cp.NavigatorTitle = "A more verbose title" split.Panes.Add(cp) dockManager.Panes.Add(split) End Sub
using Infragistics.Windows.DockManager; private void InitializeDmWithNavInfo(XamDockManager dockManager) { SplitPane split = new SplitPane(); ContentPane cp = new ContentPane(); cp.Header = "Nav Info"; cp.Content = "Press Ctrl-Tab or Alt-F7 to show the navigator"; // The navigator description and title are // only used within the pane navigator. To // see where these are used, press ctrl-tab // or alt-f7 to show the pane navigator. cp.NavigatorDescription = "Provides additional information to the end user about the pane."; cp.NavigatorTitle="A more verbose title"; split.Panes.Add(cp); dockManager.Panes.Add(split); }
Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2