SideBar.xaml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <Styles xmlns="https://github.com/avaloniaui"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3. xmlns:a="clr-namespace:Avalonia.Media.Animations;assembly=Avalonia.Media.Animations">
  4. <Style Selector="TabControl.sidebar">
  5. <Setter Property="Template">
  6. <ControlTemplate>
  7. <DockPanel>
  8. <ScrollViewer MinWidth="190" Background="{DynamicResource ThemeAccentBrush}" DockPanel.Dock="Left">
  9. <TabStrip Name="PART_TabStrip"
  10. MemberSelector="{x:Static TabControl.HeaderSelector}"
  11. Items="{TemplateBinding Items}"
  12. SelectedIndex="{TemplateBinding Path=SelectedIndex, Mode=TwoWay}">
  13. <TabStrip.ItemsPanel>
  14. <ItemsPanelTemplate>
  15. <StackPanel Orientation="Vertical"/>
  16. </ItemsPanelTemplate>
  17. </TabStrip.ItemsPanel>
  18. </TabStrip>
  19. </ScrollViewer>
  20. <Carousel Name="PART_Content"
  21. Margin="8 0 0 0"
  22. MemberSelector="{x:Static TabControl.ContentSelector}"
  23. Items="{TemplateBinding Items}"
  24. SelectedIndex="{TemplateBinding Path=SelectedIndex}"
  25. PageTransition="{TemplateBinding PageTransition}"
  26. Grid.Row="1"/>
  27. </DockPanel>
  28. </ControlTemplate>
  29. </Setter>
  30. </Style>
  31. <Style Selector="TabControl.sidebar TabStripItem">
  32. <Setter Property="Foreground" Value="White"/>
  33. <Setter Property="FontSize" Value="14"/>
  34. <Setter Property="Margin" Value="0"/>
  35. <Setter Property="Padding" Value="16"/>
  36. <Setter Property="Opacity" Value="0.5"/>
  37. <Setter Property="Transitions">
  38. <Transitions>
  39. <DoubleTransition Property="Opacity" Duration="0:0:0.5"/>
  40. </Transitions>
  41. </Setter>
  42. </Style>
  43. <Style Selector="TabControl.sidebar TabStripItem:pointerover">
  44. <Setter Property="Opacity" Value="1"/>
  45. </Style>
  46. <Style Selector="TabControl.sidebar TabStripItem:selected">
  47. <Setter Property="Background" Value="{DynamicResource ThemeAccentBrush2}"/>
  48. <Setter Property="Opacity" Value="1"/>
  49. </Style>
  50. </Styles>