[chore:] initial click-handlers

This commit is contained in:
2026-02-17 09:30:40 +01:00
parent bbfe6299b5
commit 70c028aee7

View File

@@ -64,4 +64,14 @@ public partial class MainWindow : Window
w.Content = g; w.Content = g;
w.Show(); w.Show();
} }
private void BtnImport_OnClick(object? sender, RoutedEventArgs e)
{
// CSV Import
}
private void BtnCraftCourses_OnClick(object? sender, RoutedEventArgs e)
{
// Craft courses here / call course-crafter
}
} }