-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.xaml
More file actions
58 lines (55 loc) · 3.02 KB
/
Copy pathApp.xaml
File metadata and controls
58 lines (55 loc) · 3.02 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<Application
x:Class="Filmauswertung_ModernUI.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:VCTview="clr-namespace:Filmauswertung_ModernUI.MVVM.View.ViewCutRotateViews"
xmlns:VCTviewModel="clr-namespace:Filmauswertung_ModernUI.MVVM.ViewModel.ViewCutRotateViewModels"
xmlns:converters="clr-namespace:Filmauswertung_ModernUI.Converters"
xmlns:local="clr-namespace:Filmauswertung_ModernUI"
xmlns:view="clr-namespace:Filmauswertung_ModernUI.MVVM.View"
xmlns:viewModel="clr-namespace:Filmauswertung_ModernUI.MVVM.ViewModel"
StartupUri="MVVM/View/MainView.xaml">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="Theme/MenuButtonTheme.xaml" />
<ResourceDictionary Source="Theme/TextboxTheme.xaml" />
<ResourceDictionary Source="Theme/TitleButtonTheme.xaml" />
<ResourceDictionary Source="Theme/ToolbarButtons.xaml" />
<ResourceDictionary Source="Theme/GenericButton.xaml" />
<ResourceDictionary Source="Theme/DynamicSlider.xaml" />
<ResourceDictionary Source="Theme/ToggleSwitchTheme.xaml" />
<ResourceDictionary Source="/Theme/DynamicListView.xaml" />
<ResourceDictionary Source="Theme/ScrollBar.xaml" />
<ResourceDictionary Source="Theme/DynamicComboBox.xaml" />
<ResourceDictionary Source="Theme/DynamicTextBox.xaml" />
<ResourceDictionary Source="/Theme/DynamicCheckBox.xaml" />
</ResourceDictionary.MergedDictionaries>
<!-- DataTemplates -->
<DataTemplate DataType="{x:Type viewModel:ViewCutRotateViewModel}">
<view:ViewCutRotateView />
</DataTemplate>
<DataTemplate DataType="{x:Type viewModel:CalculateConvertViewModel}">
<view:CalculateConvertView />
</DataTemplate>
<DataTemplate DataType="{x:Type viewModel:CalibrationViewModel}">
<view:CalibrationView />
</DataTemplate>
<DataTemplate DataType="{x:Type viewModel:DoseViewerViewModel}">
<view:DoseViewerView />
</DataTemplate>
<DataTemplate DataType="{x:Type VCTviewModel:CutViewModel}">
<VCTview:CutView />
</DataTemplate>
<DataTemplate DataType="{x:Type VCTviewModel:RotateViewModel}">
<VCTview:RotateView />
</DataTemplate>
<DataTemplate DataType="{x:Type VCTviewModel:GlueViewModel}">
<VCTview:GlueView />
</DataTemplate>
<!-- Converters -->
<converters:NullToVisibilityConverter x:Key="NullToVisibilityConverter" />
<converters:InverseNullToVisibilityConverter x:Key="InverseNullToVisibilityConverter" />
</ResourceDictionary>
</Application.Resources>
</Application>