-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.xaml
24 lines (23 loc) · 1.16 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
<?xml version="1.0" encoding="utf-8"?>
<Application
x:Class="StreamWeaver.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:xamlNumerics="using:Windows.Globalization.NumberFormatting"
xmlns:local="using:StreamWeaver">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<XamlControlsResources xmlns="using:Microsoft.UI.Xaml.Controls"/>
</ResourceDictionary.MergedDictionaries>
<xamlNumerics:DecimalFormatter x:Key="DecimalFormatter"
IsDecimalPointAlwaysDisplayed="False"
IsGrouped="False"
FractionDigits="2"/>
<xamlNumerics:DecimalFormatter x:Key="IntegerFormatter"
IsDecimalPointAlwaysDisplayed="False"
IsGrouped="False"
FractionDigits="0"/>
</ResourceDictionary>
</Application.Resources>
</Application>