TabControl.TabStripPlacement Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets how tab headers align relative to the tab content.
public:
property System::Windows::Controls::Dock TabStripPlacement { System::Windows::Controls::Dock get(); void set(System::Windows::Controls::Dock value); };
[System.ComponentModel.Bindable(true)]
public System.Windows.Controls.Dock TabStripPlacement { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.TabStripPlacement : System.Windows.Controls.Dock with get, set
Public Property TabStripPlacement As Dock
Property Value
The alignment of tab headers relative to tab content. The default is Top.
- Attributes
Examples
The following example creates a tab control that positions the tabs on the left side.
<TabControl TabStripPlacement="Left" Margin="0, 0, 0, 10">
<TabItem Name="fontweight" Header="FontWeight">
<TabItem.Content>
<TextBlock TextWrapping="WrapWithOverflow">
FontWeight property information goes here.
</TextBlock>
</TabItem.Content>
</TabItem>
<TabItem Name="fontsize" Header="FontSize">
<TabItem.Content>
<TextBlock TextWrapping="WrapWithOverflow">
FontSize property information goes here.
</TextBlock>
</TabItem.Content>
</TabItem>
</TabControl>
Remarks
Dependency Property Information
Identifier field | TabStripPlacementProperty |
Metadata properties set to true |
None |