TabStrip.axaml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <Styles xmlns="https://github.com/avaloniaui"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3. <Style Selector="TabStrip">
  4. <Setter Property="Background" Value="{DynamicResource PrsMenuBackground}"/>
  5. <Setter Property="BorderBrush" Value="{DynamicResource PrsMenuBackground}"/>
  6. <Setter Property="BorderThickness" Value="2"/>
  7. <Setter Property="CornerRadius" Value="{DynamicResource PrsCornerRadius}"/>
  8. <Setter Property="ItemsPanel">
  9. <Setter.Value>
  10. <ItemsPanelTemplate>
  11. <UniformGrid Rows="1"/>
  12. </ItemsPanelTemplate>
  13. </Setter.Value>
  14. </Setter>
  15. </Style>
  16. <Style Selector="TabStripItem">
  17. <Setter Property="Height" Value="30"/>
  18. <Setter Property="MinHeight" Value="0"/>
  19. <Setter Property="FontSize" Value="{DynamicResource PrsFontSizeSmall}"/>
  20. <Setter Property="HorizontalContentAlignment" Value="Center"/>
  21. <Setter Property="Background" Value="{DynamicResource PrsMenuBackground}"/>
  22. <Setter Property="Foreground" Value="White"/>
  23. <Setter Property="CornerRadius" Value="{DynamicResource PrsCornerRadius}"/>
  24. </Style>
  25. <Style Selector="TabStripItem:pointerover /template/ Border#PART_LayoutRoot">
  26. <Setter Property="Background" Value="{DynamicResource PrsMenuBackground}"/>
  27. <Setter Property="TextElement.Foreground" Value="White"/>
  28. </Style>
  29. <Style Selector="TabStripItem:selected">
  30. <Setter Property="Background" Value="{DynamicResource PrsTileBackground}"/>
  31. </Style>
  32. <Style Selector="TabStripItem:selected:pointerover /template/ Border#PART_LayoutRoot">
  33. <Setter Property="Background" Value="{DynamicResource PrsTileBackground}"/>
  34. <Setter Property="TextElement.Foreground" Value="Black"/>
  35. </Style>
  36. <Style Selector="TabStripItem:selected /template/ Border#PART_SelectedPipe">
  37. <Setter Property="IsVisible" Value="False"/>
  38. </Style>
  39. </Styles>