Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>You should set the style for the TabPanel... Basically we arrange the Tabs in the TabPanel in the TabControl.</p> <p>The below code will help you..</p> <pre><code>&lt;TabControl Background="#123" TabStripPlacement="Left" HorizontalAlignment="Stretch" BorderBrush="#41020202"&gt; &lt;TabControl.BitmapEffect&gt; &lt;DropShadowBitmapEffect Color="Black" Direction="270"/&gt; &lt;/TabControl.BitmapEffect&gt; &lt;TabControl.Resources&gt; &lt;Style TargetType="{x:Type TabPanel}"&gt; &lt;Setter Property="Background" Value="Yellow"/&gt; &lt;/Style&gt; &lt;Style TargetType="{x:Type TabItem}"&gt; &lt;Setter Property="BorderThickness" Value="0"/&gt; &lt;Setter Property="Padding" Value="0" /&gt; &lt;Setter Property="HeaderTemplate"&gt; &lt;Setter.Value&gt; &lt;DataTemplate&gt; &lt;Border x:Name="grid" Background="Red"&gt; &lt;ContentPresenter&gt; &lt;ContentPresenter.Content&gt; &lt;TextBlock Margin="4" FontSize="15" Text="{TemplateBinding Content}"/&gt; &lt;/ContentPresenter.Content&gt; &lt;ContentPresenter.LayoutTransform&gt; &lt;RotateTransform Angle="270" /&gt; &lt;/ContentPresenter.LayoutTransform&gt; &lt;/ContentPresenter&gt; &lt;/Border&gt; &lt;DataTemplate.Triggers&gt; &lt;DataTrigger Binding="{Binding RelativeSource={RelativeSource Mode=FindAncestor,AncestorType={x:Type TabItem}},Path=IsSelected}" Value="True"&gt; &lt;Setter TargetName="grid" Property="Background" Value="Green"/&gt; &lt;/DataTrigger&gt; &lt;/DataTemplate.Triggers&gt; &lt;/DataTemplate&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;/Style&gt; &lt;/TabControl.Resources&gt; &lt;TabItem Header="Tab Item 1" /&gt; &lt;TabItem Header="Tab Item 2" /&gt; &lt;TabItem Header="Tab Item 3" /&gt; &lt;TabItem Header="Tab Item 4" /&gt; &lt;/TabControl&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload