[fix:] fixed several issues and improved performance as well as ux

This commit is contained in:
Elias Fierke
2025-02-27 18:55:49 +01:00
parent 6f7f56acca
commit f321e28473
9 changed files with 122 additions and 35 deletions

16
ThemeManager.cs Normal file
View File

@@ -0,0 +1,16 @@
using System;
using Avalonia;
namespace PLG_Exam;
public static class ThemeManager
{
public static string CurrentBackgroundColor
{
get
{
return nameof(Application.RequestedThemeVariant) + "ModeBackground";
//return isDarkMode ? "DarkModeBackground" : "LightModeBackground";
}
}
}