forked from microsoft/dotnet-podcasts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.xaml
13 lines (13 loc) · 761 Bytes
/
App.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
<Application xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:windows="clr-namespace:Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific;assembly=Microsoft.Maui.Controls"
x:Class="Microsoft.NetConf2021.Maui.App"
xmlns:converters="clr-namespace:Microsoft.NetConf2021.Maui.Converters">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary Source="Resources/Styles/DefaultTheme.xaml"/>
<converters:IsNullConverter x:Key="IsNullConverter"/>
<converters:DurationConverter x:Key="DurationConverter" />
</ResourceDictionary>
</Application.Resources>
</Application>