blob: 01a5ff01ff396e03cfcbb53f6a93e1473a06438e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:Tango.PanelPC.UI.Resources">
<Style x:Key="JobsListBoxItem" TargetType="ListBoxItem" BasedOn="{StaticResource {x:Type ListBoxItem}}">
<Setter Property="BorderBrush" Value="Silver"></Setter>
<Setter Property="BorderThickness" Value="0 0 0 1"></Setter>
<Setter Property="Focusable" Value="False"></Setter>
<Setter Property="Background" Value="White"></Setter>
</Style>
<Style x:Key="JobsListBox" TargetType="ListBox" BasedOn="{StaticResource {x:Type ListBox}}">
<Setter Property="ItemContainerStyle" Value="{StaticResource JobsListBoxItem}"></Setter>
<Setter Property="Background" Value="#f2f5fa"></Setter>
</Style>
</ResourceDictionary>
|