-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathApp.xaml
31 lines (31 loc) · 1.6 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
30
31
<Application
x:Class="WinUI3Localizer.SampleApp.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:converters="using:WinUI3Localizer.SampleApp.Converters"
xmlns:local="using:WinUI3Localizer.SampleApp">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<XamlControlsResources xmlns="using:Microsoft.UI.Xaml.Controls" />
<!-- Other merged dictionaries here -->
<!--<ResourceDictionary Source="Styles.xaml" />-->
</ResourceDictionary.MergedDictionaries>
<!-- Other app resources here -->
<converters:NullableBooleanToBooleanConverter x:Key="NullableBooleanToBooleanConverter" />
<Style
x:Key="PageStackPanelStyle"
TargetType="StackPanel">
<Setter Property="Spacing" Value="10" />
</Style>
<Style TargetType="local:ExamplePresenter">
<Setter Property="CornerRadius" Value="5" />
<Setter Property="FontSize" Value="12" />
<Setter Property="Background" Value="{ThemeResource CardBackgroundFillColorDefaultBrush}" />
<Setter Property="HeaderTextStyle" Value="{StaticResource SubtitleTextBlockStyle}" />
<Setter Property="ExamplePresenterWidth" Value="290" />
<Setter Property="HorizontalContentAlignment" Value="Left" />
</Style>
</ResourceDictionary>
</Application.Resources>
</Application>