Improve desktop UX and accessibility

This commit is contained in:
2026-08-29 20:56:55 +02:00
parent b7a105af73
commit 89a6376fb6
17 changed files with 239 additions and 69 deletions
@@ -36,6 +36,7 @@ public partial class StudentListView : UserControl
});
if (files.Count == 0) return;
list.IsImporting = true;
try
{
await using var source = await files[0].OpenReadAsync();
@@ -67,5 +68,9 @@ public partial class StudentListView : UserControl
{
App.Services.GetRequiredService<NotificationService>().ShowError(ex.Message);
}
finally
{
list.IsImporting = false;
}
}
}