-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathApp.xaml
More file actions
54 lines (46 loc) · 2.43 KB
/
Copy pathApp.xaml
File metadata and controls
54 lines (46 loc) · 2.43 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<Application x:Class="SyncPro.UI.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:converters="clr-namespace:SyncPro.UI.Converters">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="/XamlResources.xaml" />
<ResourceDictionary Source="/Converters.xaml" />
<ResourceDictionary Source="/Controls/ExtendedTextBox.xaml" />
<ResourceDictionary Source="/Controls/ValidationContainer.xaml" />
</ResourceDictionary.MergedDictionaries>
<!--<Style TargetType="TextBlock">
--><!--<Setter Property="FontFamily" Value="/SyncPro.UI;component/Resources/Fonts/#Raleway" />
<Setter Property="FontSize" Value="12" />
<Setter Property="FontWeight" Value="Medium" />--><!--
<Setter Property="FontSize" Value="12.5" />
</Style>-->
<Style TargetType="TextBlock">
<Style.Triggers>
<Trigger Property="IsEnabled" Value="False">
<Setter Property="Foreground" Value="#888" />
</Trigger>
</Style.Triggers>
</Style>
<Style TargetType="TextBlock" x:Key="SectionTextStyle">
<Setter Property="FontSize" Value="13" />
<Setter Property="VerticalAlignment" Value="Center" />
</Style>
<!--<tb:TaskbarIcon x:Key="NotifyIcon"
IconSource="/Resources/Graphics/refresh_update.ico" />-->
<converters:DebugConverter x:Key="DebugConverter" />
<ContextMenu x:Key="TaskbarIconMenu">
<MenuItem Header="Configure"
Command="{Binding Source={x:Static Application.Current}, Path=ShowConfigureWindowCommand}"
CommandParameter="{Binding}">
</MenuItem>
<Separator />
<MenuItem Header="Exit"
Command="{Binding Source={x:Static Application.Current}, Path=ShutdownApplicationCommand}"
CommandParameter="{Binding}">
</MenuItem>
</ContextMenu>
</ResourceDictionary>
</Application.Resources>
</Application>