added theme mode to view and object accessor for setting properties

This commit is contained in:
2020-04-09 21:57:49 +02:00
parent 365537102f
commit 59fe84a53f
6 changed files with 50 additions and 20 deletions

11
ThemeMode.cs Normal file
View File

@@ -0,0 +1,11 @@
using System.ComponentModel;
namespace ModernWpfPlayground
{
public enum ThemeMode
{
[Description("Light")] Light,
[Description("Dark")] Dark,
[Description("Use system setting")] UseSystemSetting
}
}