- Fach kommt jetzt aus der Lerngruppe statt manuell pro Klausur eingegeben zu werden: Fach-Feld im Anlegen-Dialog der Lerngruppe ist nicht mehr auf Typ "Kurs" beschränkt, da eine Gruppe genau ein Fach unterrichtet (bei zwei Fächern legt man zwei Gruppen an). Im Klausur-Dialog ist das Fach dadurch nur noch read-only Kontext statt eines redundanten Eingabefelds. - Neues Feld Exam.ReturnedAt: wird beim Statuswechsel auf "Zurück- gegeben" automatisch mit dem heutigen Datum belegt (und beim Zurücknehmen des Status wieder geleert), ist im Klausur-Dialog aber auch manuell nachträglich korrigierbar. Sichtbar als eigene Spalte im Klausuren-Tab. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
78 lines
3.6 KiB
XML
78 lines
3.6 KiB
XML
<Window xmlns="https://github.com/avaloniaui"
|
||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
xmlns:vm="clr-namespace:LehrerApp.Desktop.ViewModels.Groups"
|
||
x:Class="LehrerApp.Desktop.Views.Groups.AddGroupDialog"
|
||
x:DataType="vm:AddGroupDialogViewModel"
|
||
Title="{Binding DialogTitle}"
|
||
Width="420" SizeToContent="Height"
|
||
CanResize="False" WindowStartupLocation="CenterOwner">
|
||
|
||
<Grid RowDefinitions="*,Auto" Margin="24">
|
||
<StackPanel Grid.Row="0" Spacing="14">
|
||
<TextBlock Text="{Binding DialogTitle}" FontSize="18" FontWeight="SemiBold"/>
|
||
|
||
<!-- Typ: Klasse oder Kurs -->
|
||
<StackPanel Spacing="4">
|
||
<TextBlock Text="Typ *" FontSize="12" Opacity="0.7"/>
|
||
<ComboBox ItemsSource="{Binding TypeOptions}"
|
||
SelectedItem="{Binding SelectedTypeName}"
|
||
HorizontalAlignment="Stretch"/>
|
||
</StackPanel>
|
||
|
||
<!-- Bezeichnung – Label und Placeholder reagieren auf den Typ -->
|
||
<StackPanel Spacing="4">
|
||
<TextBlock Text="{Binding NameLabel}" FontSize="12" Opacity="0.7"/>
|
||
<TextBox Text="{Binding Name}" PlaceholderText="{Binding NameHint}"/>
|
||
</StackPanel>
|
||
|
||
<!-- Fach – AutoComplete aus bekannten Fächern; auch bei Klasse, da eine
|
||
Lerngruppe genau ein Fach unterrichtet (bei zwei Fächern: zwei Gruppen anlegen) -->
|
||
<StackPanel Spacing="4">
|
||
<TextBlock Text="Fach (optional)" FontSize="12" Opacity="0.7"/>
|
||
<AutoCompleteBox Text="{Binding Subject}"
|
||
ItemsSource="{Binding KnownSubjectNames}"
|
||
FilterMode="Contains"
|
||
MinimumPrefixLength="0"
|
||
PlaceholderText="z.B. Chemie, Mathematik"
|
||
HorizontalAlignment="Stretch"/>
|
||
</StackPanel>
|
||
|
||
<Grid ColumnDefinitions="*,12,*">
|
||
<StackPanel Grid.Column="0" Spacing="4">
|
||
<TextBlock Text="Klassenstufe *" FontSize="12" Opacity="0.7"/>
|
||
<NumericUpDown Value="{Binding GradeLevel}" Minimum="1" Maximum="13" FormatString="0"/>
|
||
</StackPanel>
|
||
<StackPanel Grid.Column="2" Spacing="4">
|
||
<TextBlock Text="Schuljahr" FontSize="12" Opacity="0.7"/>
|
||
<ComboBox ItemsSource="{Binding SchoolYears}"
|
||
SelectedItem="{Binding SelectedSchoolYear}"
|
||
HorizontalAlignment="Stretch"/>
|
||
</StackPanel>
|
||
</Grid>
|
||
|
||
<Grid ColumnDefinitions="*,12,*">
|
||
<StackPanel Grid.Column="0" Spacing="4">
|
||
<TextBlock Text="Bewertungssystem" FontSize="12" Opacity="0.7"/>
|
||
<ComboBox ItemsSource="{Binding GradingOptions}"
|
||
SelectedItem="{Binding SelectedGradingName}"
|
||
HorizontalAlignment="Stretch"/>
|
||
</StackPanel>
|
||
<StackPanel Grid.Column="2" Spacing="4">
|
||
<TextBlock Text="Wochenstunden (optional)" FontSize="12" Opacity="0.7"/>
|
||
<NumericUpDown Value="{Binding HoursPerWeek}" Minimum="1" Maximum="40" FormatString="0"
|
||
HorizontalAlignment="Stretch"/>
|
||
</StackPanel>
|
||
</Grid>
|
||
|
||
<TextBlock Text="{Binding ValidationMessage}" Foreground="Red" FontSize="12"
|
||
IsVisible="{Binding ValidationMessage, Converter={x:Static StringConverters.IsNotNullOrEmpty}}"/>
|
||
</StackPanel>
|
||
|
||
<Grid Grid.Row="1" ColumnDefinitions="*,8,*" Margin="0,20,0,0">
|
||
<Button Grid.Column="0" Content="Abbrechen" HorizontalAlignment="Stretch" Click="OnCancel"/>
|
||
<Button Grid.Column="2" Content="{Binding SaveButtonText}"
|
||
HorizontalAlignment="Stretch" Click="OnSave"/>
|
||
</Grid>
|
||
</Grid>
|
||
</Window>
|