39 lines
2.2 KiB
XML
39 lines
2.2 KiB
XML
<Styles xmlns="https://github.com/avaloniaui">
|
|
<Style Selector="AutoCompleteBox">
|
|
<Setter Property="Background" Value="Transparent" />
|
|
<Setter Property="BorderBrush" Value="{DynamicResource MaterialDesignTextBoxBorder}" />
|
|
<!-- <Setter Property="BorderThickness" Value="0 0 0 1" /> -->
|
|
<Setter Property="BorderThickness" Value="1" /> <!-- FixBorderThickness -->
|
|
<Setter Property="Padding" Value="4" />
|
|
<Setter Property="Template">
|
|
<ControlTemplate>
|
|
<Panel>
|
|
<TextBox Name="PART_TextBox"
|
|
Background="{TemplateBinding Background}"
|
|
BorderBrush="{TemplateBinding BorderBrush}"
|
|
BorderThickness="{TemplateBinding BorderThickness}"
|
|
Padding="{TemplateBinding Padding}"
|
|
Watermark="{TemplateBinding Watermark}"
|
|
DataValidationErrors.Errors="{TemplateBinding (DataValidationErrors.Errors)}" />
|
|
|
|
<Popup Name="PART_Popup"
|
|
MinWidth="{Binding Bounds.Width, RelativeSource={RelativeSource TemplatedParent}}"
|
|
MaxHeight="{TemplateBinding MaxDropDownHeight}"
|
|
PlacementTarget="{TemplateBinding}"
|
|
IsLightDismissEnabled="True">
|
|
<Border BorderBrush="{DynamicResource MaterialDesignTextAreaBorder}"
|
|
BorderThickness="1">
|
|
<ListBox Name="PART_SelectingItemsControl"
|
|
BorderThickness="0"
|
|
Background="{TemplateBinding Background}"
|
|
Foreground="{TemplateBinding Foreground}"
|
|
ItemTemplate="{TemplateBinding ItemTemplate}"
|
|
ScrollViewer.HorizontalScrollBarVisibility="Auto"
|
|
ScrollViewer.VerticalScrollBarVisibility="Auto" />
|
|
</Border>
|
|
</Popup>
|
|
</Panel>
|
|
</ControlTemplate>
|
|
</Setter>
|
|
</Style>
|
|
</Styles> |