Version

NavigatorDescriptionProperty Field

Identifies the NavigatorDescription dependency property
Syntax
'Declaration
 
Public Shared ReadOnly NavigatorDescriptionProperty As DependencyProperty
public static readonly DependencyProperty NavigatorDescriptionProperty
Example
This example demonstrates using the NavigatorDescription and NavigatorTitle properties of the ContentPane to provide more information to the end user within the PaneNavigator.

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);
}
<igDock:XamDockManager>
    
<igDock:XamDockManager.Panes>
        
<igDock:SplitPane>
            
<!-- 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. 
-->
            
<igDock:ContentPane Header="Nav Info"
                                
NavigatorDescription="Provides additional information to the end user about the pane."
                                
NavigatorTitle="A more verbose title" 
                                
Content="Press Ctrl-Tab or Alt-F7 to show the navigator"
                                
/>
        
</igDock:SplitPane>
    
</igDock:XamDockManager.Panes>
</igDock:XamDockManager>
Requirements

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

See Also