Compare commits
2 Commits
8bfa22451e
...
30c8b2ef92
| Author | SHA1 | Date | |
|---|---|---|---|
| 30c8b2ef92 | |||
| 24416dc345 |
@@ -218,9 +218,18 @@
|
|||||||
</TabItem.Header>
|
</TabItem.Header>
|
||||||
<Grid ColumnDefinitions="*,*">
|
<Grid ColumnDefinitions="*,*">
|
||||||
<ListBox x:Name="LbResult" Margin="10,10,10,10"></ListBox>
|
<ListBox x:Name="LbResult" Margin="10,10,10,10"></ListBox>
|
||||||
<ScrollViewer Grid.Column="1">
|
<StackPanel Orientation="Vertical" Grid.Column="1" Spacing="10">
|
||||||
<TextBlock x:Name="TbResultStatistics"></TextBlock>
|
<Button Margin="0,10,0,0" x:Name="BtnExportCoursePDF" VerticalAlignment="Top" Height="35" HorizontalAlignment="Stretch" Click="BtnExportCoursePDF_OnClick" HorizontalContentAlignment="Center">
|
||||||
</ScrollViewer>
|
<StackPanel Orientation="Horizontal">
|
||||||
|
<LucideIcon Kind="FileText" Width="24" Height="24" />
|
||||||
|
<Label Content="Export (PDF)..." VerticalContentAlignment="Center" FontSize="12"
|
||||||
|
FontWeight="Bold" />
|
||||||
|
</StackPanel>
|
||||||
|
</Button>
|
||||||
|
<ScrollViewer>
|
||||||
|
<TextBlock x:Name="TbResultStatistics"></TextBlock>
|
||||||
|
</ScrollViewer>
|
||||||
|
</StackPanel>
|
||||||
</Grid>
|
</Grid>
|
||||||
</TabItem>
|
</TabItem>
|
||||||
</TabControl>
|
</TabControl>
|
||||||
|
|||||||
@@ -13,6 +13,7 @@ public partial class MainWindow : Window
|
|||||||
public MainWindow()
|
public MainWindow()
|
||||||
{
|
{
|
||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
|
Settings.ImportInitial();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void MnuExpSettings_OnClick(object? sender, RoutedEventArgs e)
|
private void MnuExpSettings_OnClick(object? sender, RoutedEventArgs e)
|
||||||
@@ -376,4 +377,9 @@ public partial class MainWindow : Window
|
|||||||
RefreshCoursesList();
|
RefreshCoursesList();
|
||||||
} catch (Exception ex){}
|
} catch (Exception ex){}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void BtnExportCoursePDF_OnClick(object? sender, RoutedEventArgs e)
|
||||||
|
{
|
||||||
|
// Export as PDF
|
||||||
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user