Neuer Dialog berechnet aus den Sitzungs-Bewertungen je Schüler eine Mitarbeitsnote (H1/H2/Gesamtjahr), mit editierbarer Aspekt-Gewichtung, Trendanzeige und Übernahme als Grade (Category=Participation).
12 lines
295 B
C#
12 lines
295 B
C#
using Avalonia.Controls;
|
|
using Avalonia.Interactivity;
|
|
|
|
namespace LehrerApp.Desktop.Views.Groups;
|
|
|
|
public partial class ParticipationGradeDialog : Window
|
|
{
|
|
public ParticipationGradeDialog() => InitializeComponent();
|
|
|
|
private void OnClose(object? sender, RoutedEventArgs e) => Close();
|
|
}
|