-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.xaml
More file actions
36 lines (33 loc) · 1.48 KB
/
App.xaml
File metadata and controls
36 lines (33 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<Application x:Class="OnSiteCompanion.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:OnSiteCompanion"
StartupUri="MainWindow.xaml">
<Application.Resources>
<Style x:Key="InfoTileBorder" TargetType="Border">
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Background" Value="#F5F7FF"/>
</Trigger>
<Trigger Property="IsMouseOver" Value="false">
<Setter Property="Background" Value="#ffffff"/>
</Trigger>
</Style.Triggers>
</Style>
<Style x:Key="CBListHeader" TargetType="UserControl" >
<Style.Setters>
<Setter Property="Background" Value="#F0F0F0"></Setter>
<Setter Property="Foreground" Value="#404040"></Setter>
</Style.Setters>
<!--<Style.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Background" Value="#F5F7FF"/>
</Trigger>
<Trigger Property="IsMouseOver" Value="false">
<Setter Property="Background" Value="#ffffff"/>
</Trigger>
</Style.Triggers>
-->
</Style>
</Application.Resources>
</Application>