mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
15 lines
319 B
C#
15 lines
319 B
C#
using System;
|
|
using Artemis.UI.Utilities;
|
|
|
|
namespace Artemis.UI.Events
|
|
{
|
|
public class WindowsThemeEventArgs : EventArgs
|
|
{
|
|
public WindowsThemeEventArgs(ThemeWatcher.WindowsTheme theme)
|
|
{
|
|
Theme = theme;
|
|
}
|
|
|
|
public ThemeWatcher.WindowsTheme Theme { get; set; }
|
|
}
|
|
} |