From 30c8b2ef9248b5e87c3b2b2835902448104df81c Mon Sep 17 00:00:00 2001 From: Elias Fierke Date: Fri, 6 Mar 2026 07:58:21 +0100 Subject: [PATCH] [gui:] added pdf export button (unfunctional) --- MainWindow.axaml | 15 ++++++++++++--- MainWindow.axaml.cs | 5 +++++ 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/MainWindow.axaml b/MainWindow.axaml index fc4e6b4..29beb80 100644 --- a/MainWindow.axaml +++ b/MainWindow.axaml @@ -218,9 +218,18 @@ - - - + + + + + + diff --git a/MainWindow.axaml.cs b/MainWindow.axaml.cs index 46d9d43..d0abf66 100644 --- a/MainWindow.axaml.cs +++ b/MainWindow.axaml.cs @@ -377,4 +377,9 @@ public partial class MainWindow : Window RefreshCoursesList(); } catch (Exception ex){} } + + private void BtnExportCoursePDF_OnClick(object? sender, RoutedEventArgs e) + { + // Export as PDF + } } \ No newline at end of file