From 70c028aee7c13af3d3a53e205529d70fffdd83c1 Mon Sep 17 00:00:00 2001 From: Elias Fierke Date: Tue, 17 Feb 2026 09:30:40 +0100 Subject: [PATCH] [chore:] initial click-handlers --- MainWindow.axaml.cs | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/MainWindow.axaml.cs b/MainWindow.axaml.cs index 1dec9ee..262cb80 100644 --- a/MainWindow.axaml.cs +++ b/MainWindow.axaml.cs @@ -64,4 +64,14 @@ public partial class MainWindow : Window w.Content = g; 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 + } } \ No newline at end of file