-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathApp.xaml
More file actions
37 lines (29 loc) · 1.8 KB
/
App.xaml
File metadata and controls
37 lines (29 loc) · 1.8 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
37
<Application x:Class="SampleWpf.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:SampleWpf"
StartupUri="MainWindow.xaml">
<Application.Resources>
<FontFamily x:Key="MaterialIconsRegular">/Fonts/MaterialIcons-Regular.ttf#Material Icons</FontFamily>
<BooleanToVisibilityConverter x:Key="BoolToVis"/>
<local:InverseBooleanToVisibilityConverter x:Key="InvBoolToVis"/>
<local:MicMuteIconConverter x:Key="MicMuteIconConverter"/>
<local:CamMuteIconConverter x:Key="CamMuteIconConverter"/>
<local:MuteTextConverter x:Key="MuteTextConverter"/>
<local:HoldStateIconConverter x:Key="HoldStateIconConverter"/>
<local:HoldStateTextConverter x:Key="HoldStateTextConverter"/>
<local:CdrStateIconConverter x:Key="CdrStateIconConverter"/>
<local:CdrStateColorConverter x:Key="CdrStateColorConverter"/>
<local:CallDirectionIconConverter x:Key="CallDirectionIconConverter"/>
<local:RegStateIconConverter x:Key="RegStateIconConverter"/>
<local:RegStateColorConverter x:Key="RegStateColorConverter"/>
<local:MessageSentColorConverter x:Key="MessageSentColorConverter"/>
<local:BLFStateColorConverter x:Key="BLFStateColorConverter"/>
<local:SwitchedCallColorConverter x:Key="SwitchedCallColorConverter"/>
<Style x:Key="listRowBorder" TargetType="ListBoxItem">
<Setter Property="BorderThickness" Value="0,0,0,1" />
<Setter Property="BorderBrush" Value="LightGray" />
<Setter Property="Margin" Value="1" />
</Style>
</Application.Resources>
</Application>