Initial
This commit is contained in:
38
LehrerApp.Desktop/Views/DataTemplates.axaml
Normal file
38
LehrerApp.Desktop/Views/DataTemplates.axaml
Normal file
@@ -0,0 +1,38 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user