This commit is contained in:
2026-03-29 23:47:31 +02:00
commit 216d5d2280
75 changed files with 5702 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
<!-- PlaceholderView.axaml -->
<UserControl xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:vm="clr-namespace:LehrerApp.Desktop.ViewModels"
x:Class="LehrerApp.Desktop.Views.PlaceholderView"
x:DataType="vm:PlaceholderViewModel">
<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center" Spacing="8">
<TextBlock Text="{Binding Title}" FontSize="24" FontWeight="SemiBold"
HorizontalAlignment="Center"/>
<TextBlock Text="Wird noch implementiert…" Opacity="0.5"
HorizontalAlignment="Center"/>
</StackPanel>
</UserControl>