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