1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <Styles xmlns="https://github.com/avaloniaui"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
- <Style Selector="TabStrip">
- <Setter Property="Background" Value="{DynamicResource PrsMenuBackground}"/>
- <Setter Property="BorderBrush" Value="{DynamicResource PrsMenuBackground}"/>
- <Setter Property="BorderThickness" Value="2"/>
- <Setter Property="CornerRadius" Value="{DynamicResource PrsCornerRadius}"/>
- <Setter Property="ItemsPanel">
- <Setter.Value>
- <ItemsPanelTemplate>
- <UniformGrid Rows="1"/>
- </ItemsPanelTemplate>
- </Setter.Value>
- </Setter>
- </Style>
- <Style Selector="TabStripItem">
- <Setter Property="Height" Value="30"/>
- <Setter Property="MinHeight" Value="0"/>
- <Setter Property="FontSize" Value="{DynamicResource PrsFontSizeSmall}"/>
-
- <Setter Property="HorizontalContentAlignment" Value="Center"/>
-
- <Setter Property="Background" Value="{DynamicResource PrsMenuBackground}"/>
- <Setter Property="Foreground" Value="White"/>
- <Setter Property="CornerRadius" Value="{DynamicResource PrsCornerRadius}"/>
- </Style>
-
- <Style Selector="TabStripItem:pointerover /template/ Border#PART_LayoutRoot">
- <Setter Property="Background" Value="{DynamicResource PrsMenuBackground}"/>
- <Setter Property="TextElement.Foreground" Value="White"/>
- </Style>
-
- <Style Selector="TabStripItem:selected">
- <Setter Property="Background" Value="{DynamicResource PrsTileBackground}"/>
- </Style>
- <Style Selector="TabStripItem:selected:pointerover /template/ Border#PART_LayoutRoot">
- <Setter Property="Background" Value="{DynamicResource PrsTileBackground}"/>
- <Setter Property="TextElement.Foreground" Value="Black"/>
- </Style>
-
- <Style Selector="TabStripItem:selected /template/ Border#PART_SelectedPipe">
- <Setter Property="IsVisible" Value="False"/>
- </Style>
- </Styles>
|