-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathApp.xaml
29 lines (27 loc) · 1.48 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="WordWeaver.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:converters="using:WordWeaver.Converters"
xmlns:muxc="using:Microsoft.UI.Xaml.Controls">
<Application.Resources>
<muxc:XamlControlsResources>
<muxc:XamlControlsResources.MergedDictionaries>
<ResourceDictionary>
<converters:LocaleToLanguageLabelConverter x:Key="LocaleToLanguageLabelConverter" />
<converters:EmptyStringToVisibilityConverter x:Key="EmptyStringToVisibilityConverter" />
<converters:IntToVisibilityConverter x:Key="IntToVisibilityConverter" />
<converters:ObjectToStringConverter x:Key="ObjectToStringConverter" />
<FontFamily x:Key="SettingsIconsFontFamily">/Assets/SettingsIcons.ttf#Settings Fluent Icons</FontFamily>
<Style
x:Key="TransparentButtonStyle"
BasedOn="{StaticResource DefaultButtonStyle}"
TargetType="Button">
<Setter Property="Background" Value="Transparent" />
<Setter Property="BorderThickness" Value="0" />
</Style>
</ResourceDictionary>
</muxc:XamlControlsResources.MergedDictionaries>
</muxc:XamlControlsResources>
</Application.Resources>
</Application>