[feat:] word count (per task and total) integrated

This commit is contained in:
Elias Fierke
2025-03-22 18:42:52 +01:00
parent 1997c14890
commit d2de5974c3
4 changed files with 54 additions and 0 deletions

15
InfoWindow.axaml.cs Normal file
View File

@@ -0,0 +1,15 @@
using Avalonia;
using Avalonia.Controls;
using Avalonia.Markup.Xaml;
namespace PLG_Exam;
public partial class InfoWindow : Window
{
public InfoWindow(string cnt)
{
InitializeComponent();
LblInfo.Content=cnt;
}
}