Compare commits

...

3 Commits

Author SHA1 Message Date
e3d504ceb7 [chore:] added initial BtnCraftCourses-Handler 2026-02-27 12:27:50 +01:00
99a6bdd473 [chore:] added gui-item names 2026-02-27 12:26:19 +01:00
8b92b32e60 [init:] added CourseCrafter-Class 2026-02-27 12:26:03 +01:00
3 changed files with 19 additions and 2 deletions

View File

@@ -20,7 +20,7 @@
<MenuItem Header="Über" x:Name="MnuAbout" Click="MnuAbout_OnClick" />
</MenuItem>
</Menu>
<TabControl Grid.Row="1">
<TabControl x:Name="TclMainView" Grid.Row="1">
<TabItem>
<TabItem.Header>
<StackPanel Orientation="Horizontal">
@@ -194,7 +194,7 @@
</Grid>
</TabItem>
<TabItem>
<TabItem x:Name="TbiResults">
<TabItem.Header>
<StackPanel Orientation="Horizontal">
<LucideIcon Kind="Sparkles" Width="32" Height="32" Size="32" />

View File

@@ -119,6 +119,14 @@ public partial class MainWindow : Window
private void BtnCraftCourses_OnClick(object? sender, RoutedEventArgs e)
{
// Craft courses here / call course-crafter
CourseCrafter.Craft();
RefreshResultView();
TbiResults.Focus();
}
private void RefreshResultView()
{
return;
}
private void LbStudentsImported_OnSelectionChanged(object? sender, SelectionChangedEventArgs e)

9
crafter.cs Normal file
View File

@@ -0,0 +1,9 @@
namespace spplus;
public class CourseCrafter
{
public static void Craft()
{
}
}