mirror of
https://github.com/holgerb83/ModernWpfPlayground.git
synced 2025-04-16 21:43:51 +02:00
11 lines
239 B
C#
11 lines
239 B
C#
using System.ComponentModel;
|
|
|
|
namespace ModernWpfPlayground
|
|
{
|
|
public enum ThemeMode
|
|
{
|
|
[Description("Light")] Light,
|
|
[Description("Dark")] Dark,
|
|
[Description("Use system setting")] UseSystemSetting
|
|
}
|
|
} |