ListBox.axaml 568 B

1234567891011121314
  1. <Styles xmlns="https://github.com/avaloniaui" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  2. xmlns:avalonia="clr-namespace:InABox.Avalonia">
  3. <Style Selector="ListBoxItem">
  4. <Setter Property="Padding">
  5. <avalonia:ThicknessProvider Left="0" Right="0" Top="0" Bottom="0" />
  6. </Setter>
  7. </Style>
  8. <!-- PointerOver State -->
  9. <Style Selector="ListBoxItem:pointerover /template/ ContentPresenter#PART_ContentPresenter">
  10. <Setter Property="Background" Value="Transparent" />
  11. </Style>
  12. </Styles>