Settings management started

This commit is contained in:
2025-11-29 16:49:14 -06:00
parent c64386b985
commit aae22e57cf
8 changed files with 408 additions and 8 deletions

View File

@@ -28,6 +28,9 @@ public partial class MainWindow : Window
KeyDownEvent.AddClassHandler<TopLevel>(OnKeyDown, handledEventsToo: true);
ChangePage("Home");
AppManager.Settings.AddSetting(new AppSetting("test", typeof(int)));
AppManager.Settings.SetSettingValue("test", 1);
}
public void ChangePage(string pageName)