39 lines
1.3 KiB
XML
39 lines
1.3 KiB
XML
<ResourceDictionary xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:vm="clr-namespace:LehrerApp.Desktop.ViewModels"
|
|
xmlns:vmg="clr-namespace:LehrerApp.Desktop.ViewModels.Groups"
|
|
xmlns:vms="clr-namespace:LehrerApp.Desktop.ViewModels.Students"
|
|
xmlns:vg="clr-namespace:LehrerApp.Desktop.Views.Groups"
|
|
xmlns:vs="clr-namespace:LehrerApp.Desktop.Views.Students"
|
|
xmlns:v="clr-namespace:LehrerApp.Desktop.Views">
|
|
|
|
<!-- Dashboard -->
|
|
<DataTemplate DataType="vm:DashboardViewModel">
|
|
<v:DashboardView/>
|
|
</DataTemplate>
|
|
|
|
<!-- Platzhalter -->
|
|
<DataTemplate DataType="vm:PlaceholderViewModel">
|
|
<v:PlaceholderView/>
|
|
</DataTemplate>
|
|
|
|
<!-- Gruppen -->
|
|
<DataTemplate DataType="vmg:GroupListViewModel">
|
|
<vg:GroupListView/>
|
|
</DataTemplate>
|
|
|
|
<DataTemplate DataType="vmg:GroupDetailViewModel">
|
|
<vg:GroupDetailView/>
|
|
</DataTemplate>
|
|
|
|
<!-- Schüler -->
|
|
<DataTemplate DataType="vms:StudentListViewModel">
|
|
<vs:StudentListView/>
|
|
</DataTemplate>
|
|
|
|
<DataTemplate DataType="vms:StudentDetailViewModel">
|
|
<vs:StudentDetailView/>
|
|
</DataTemplate>
|
|
|
|
</ResourceDictionary>
|