public static readonly DependencyProperty NavigatorDescriptionProperty
'宣言 Public Shared ReadOnly NavigatorDescriptionProperty As DependencyProperty
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
'宣言 Public Shared ReadOnly NavigatorDescriptionProperty As DependencyProperty
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); }
'宣言 Public Shared ReadOnly NavigatorDescriptionProperty As DependencyProperty
'宣言 Public Shared ReadOnly NavigatorDescriptionProperty As DependencyProperty