You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
1.3 KiB
25 lines
1.3 KiB
<ResourceDictionary xmlns="https://github.com/avaloniaui" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> |
|
|
|
<!-- ListBoxItem theme that removes ListBox visuals (i.e. for using with radiobuttons) --> |
|
<ControlTheme x:Key="ListBoxItemBorderlessTheme" TargetType="ListBoxItem"> |
|
<Setter Property="Template"> |
|
<ControlTemplate> |
|
<Panel> |
|
<ContentPresenter |
|
Name="PART_ContentPresenter" |
|
Margin="2,0" |
|
Padding="{TemplateBinding Padding}" |
|
HorizontalContentAlignment="{TemplateBinding HorizontalContentAlignment}" |
|
VerticalContentAlignment="{TemplateBinding VerticalContentAlignment}" |
|
Background="{TemplateBinding Background}" |
|
BorderBrush="{TemplateBinding BorderBrush}" |
|
BorderThickness="{TemplateBinding BorderThickness}" |
|
Content="{TemplateBinding Content}" |
|
ContentTemplate="{TemplateBinding ContentTemplate}" |
|
CornerRadius="{TemplateBinding CornerRadius}" /> |
|
</Panel> |
|
</ControlTemplate> |
|
</Setter> |
|
|
|
</ControlTheme> |
|
</ResourceDictionary>
|
|
|