27 lines
1.2 KiB
XML
27 lines
1.2 KiB
XML
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
<!-- ListBoxItems -->
|
|
<Style x:Key="PhotoListBoxItem" TargetType="ListBoxItem">
|
|
<Setter Property="HorizontalAlignment" Value="Stretch" />
|
|
<Style.Resources>
|
|
<SolidColorBrush
|
|
x:Key="{x:Static SystemColors.HighlightBrushKey}"
|
|
Opacity="0.4"
|
|
Color="AliceBlue" />
|
|
<SolidColorBrush
|
|
x:Key="{x:Static SystemColors.InactiveSelectionHighlightBrushKey}"
|
|
Opacity="0.4"
|
|
Color="AliceBlue" />
|
|
</Style.Resources>
|
|
</Style>
|
|
|
|
<!-- ListBox -->
|
|
<Style x:Key="PhotoListBox" TargetType="{x:Type ListBox}">
|
|
<Setter Property="Foreground" Value="Black" />
|
|
<Setter Property="Margin" Value="5" />
|
|
<Setter Property="MinHeight" Value="100" />
|
|
<Setter Property="MaxHeight" Value="800" />
|
|
<Setter Property="IsSynchronizedWithCurrentItem" Value="True" />
|
|
<Setter Property="SelectionMode" Value="Single" />
|
|
<Setter Property="ItemContainerStyle" Value="{StaticResource PhotoListBoxItem}" />
|
|
</Style>
|
|
</ResourceDictionary> |