-
Notifications
You must be signed in to change notification settings - Fork 1
/
App.xaml
29 lines (23 loc) · 1.06 KB
/
App.xaml
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
<Application x:Class="DcimIngester.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Startup="Application_Startup" ShutdownMode="OnExplicitShutdown">
<Application.Resources>
<ContextMenu x:Key="TrayContextMenu">
<MenuItem Header="Settings" Click="SettingsMenuItem_Click"/>
<MenuItem Header="Exit" Click="ExitMenuItem_Click"/>
</ContextMenu>
<Style TargetType="{x:Type Button}">
<Setter Property="Height" Value="26"/>
<Setter Property="Padding" Value="8,0,8,2"/>
</Style>
<Style TargetType="{x:Type TextBox}">
<Setter Property="Height" Value="26"/>
<Setter Property="Padding" Value="4,3,4,0"/>
</Style>
<Style TargetType="{x:Type ComboBox}">
<Setter Property="Height" Value="26"/>
<Setter Property="Padding" Value="7,4,7,0"/>
</Style>
</Application.Resources>
</Application>