From 44654dd784633130238ad0633b6172d13c709edb Mon Sep 17 00:00:00 2001 From: Elias Fierke Date: Wed, 18 Mar 2026 14:37:23 +0100 Subject: [PATCH] [gui:] added csv-export placeholder button --- MainWindow.axaml | 23 ++++++++++++++++------- MainWindow.axaml.cs | 5 +++++ 2 files changed, 21 insertions(+), 7 deletions(-) diff --git a/MainWindow.axaml b/MainWindow.axaml index aa388ce..8cc7a51 100644 --- a/MainWindow.axaml +++ b/MainWindow.axaml @@ -211,13 +211,22 @@ - + + + + diff --git a/MainWindow.axaml.cs b/MainWindow.axaml.cs index 6fc835d..b651c05 100644 --- a/MainWindow.axaml.cs +++ b/MainWindow.axaml.cs @@ -423,4 +423,9 @@ public partial class MainWindow : Window Settings.Instance.NumCoursesPerSemester = Convert.ToInt32(NudSportMaxPerSemester.Value); } catch {} } + + private void BtnExportCourseCSV_OnClick(object? sender, RoutedEventArgs e) + { + // export as csv here + } } \ No newline at end of file