バージョン 24.2 (最新)

TabHeaderProperty フィールド

TabHeader 依存プロパティを識別します。
シンタックス
public static readonly DependencyProperty TabHeaderProperty
使用例
Imports Infragistics.Windows.DockManager

Private Sub InitializeDmWithCP(ByVal dockManager As XamDockManager)
    Dim split As New SplitPane()

    Dim cp As New ContentPane()
    cp.Header = "Caption Text"
    ' The TabHeader can be excluded and will default 
    ' to the value of the Header. 
    cp.TabHeader = "Tab Text"
    cp.IsPinned = False

    ' the following assumes you have a resource image in the root 
    ' of the application with the name panePic.bmp 
    Dim uri As New Uri("pack://application:,,,/panePic.bmp")
    cp.Image = New BitmapImage(uri)

    split.Panes.Add(cp)
    dockManager.Panes.Add(split)
End Sub
'宣言
 
Public Shared ReadOnly TabHeaderProperty As DependencyProperty
 
using Infragistics.Windows.DockManager;

private void InitializeDmWithCP(XamDockManager dockManager)
{
	SplitPane split = new SplitPane();

	ContentPane cp = new ContentPane();
	cp.Header = "Caption Text";
	// The TabHeader can be excluded and will default
	// to the value of the Header.
	cp.TabHeader = "Tab Text";
	cp.IsPinned = false;

	// the following assumes you have a resource image in the root
	// of the application with the name panePic.bmp
	Uri uri = new Uri("pack://application:,,,/panePic.bmp");
	cp.Image = new BitmapImage(uri);

	split.Panes.Add(cp);
	dockManager.Panes.Add(split);
}
'宣言
 
Public Shared ReadOnly TabHeaderProperty As DependencyProperty
 
<igDock:XamDockManager>
    
<igDock:XamDockManager.Panes>
        
<igDock:SplitPane>
            
<!-- The TabHeader can be excluded and will default
                 to the value of the Header. 
-->
            
<igDock:ContentPane Header="Caption Text"
                                
TabHeader="Tab Text"
                                
IsPinned="False"
                                
Image="panePic.bmp" />
        
</igDock:SplitPane>
    
</igDock:XamDockManager.Panes>
</igDock:XamDockManager>
'宣言
 
Public Shared ReadOnly TabHeaderProperty As DependencyProperty
 
参照