This repository was archived by the owner on Apr 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathApp.xaml
35 lines (33 loc) · 1.61 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
32
33
34
35
<Application
x:Class="Minutes.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:Minutes"
xmlns:viewModels="clr-namespace:Minutes.MVVM.ViewModels"
xmlns:views="clr-namespace:Minutes.MVVM.Views">
<Application.Resources>
<FontFamily x:Key="Antipasto">pack://application:,,,/Fonts/#Antipasto Pro</FontFamily>
<FontFamily x:Key="LTSaeada">pack://apliccation:,,,/Fonts/#LT Saeada Medium</FontFamily>
<!-- Remove this font later -->
<FontFamily x:Key="RedditSans">pack://:,,,/Fonts#Reddit Sans</FontFamily>
<FontFamily x:Key="Inter">pack://application:,,,/Fonts/#Inter</FontFamily>
<DataTemplate DataType="{x:Type viewModels:HomeViewModel}">
<views:HomeView />
</DataTemplate>
<DataTemplate DataType="{x:Type viewModels:LoginViewModel}">
<views:LoginView />
</DataTemplate>
<DataTemplate DataType="{x:Type viewModels:TranscriptionTextViewModel}">
<views:TranscriptionTextView />
</DataTemplate>
<DataTemplate DataType="{x:Type viewModels:SummaryTextViewModel}">
<views:SummaryTextView />
</DataTemplate>
<DataTemplate DataType="{x:Type viewModels:AlwaysTopWidgetHomeViewModel}">
<views:AlwaysTopWidgetView />
</DataTemplate>
<DataTemplate DataType="{x:Type viewModels:EnhancedTranscriptionTextViewModel}">
<views:EnhancedTranscriptionTextView />
</DataTemplate>
</Application.Resources>
</Application>