バージョン

NavigatorTitleProperty フィールド

NavigatorTitle 依存プロパティを識別します。
シンタックス
'宣言
 
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);
}
<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>
参照