init 1.0.0

This commit is contained in:
2026-06-19 00:42:00 +02:00
commit 5ca960746b
67 changed files with 3261 additions and 0 deletions
@@ -0,0 +1,13 @@
<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="12">
<TextBlock Text="{Binding Icon}" FontSize="48" HorizontalAlignment="Center"/>
<TextBlock Text="{Binding Title}" FontSize="24" FontWeight="SemiBold"
HorizontalAlignment="Center"/>
<TextBlock Text="Wird in einer späteren Version implementiert."
Opacity="0.5" HorizontalAlignment="Center"/>
</StackPanel>
</UserControl>
@@ -0,0 +1,3 @@
using Avalonia.Controls;
namespace LehrerApp.Desktop.Views;
public partial class PlaceholderView : UserControl { public PlaceholderView() => InitializeComponent(); }