
* UserControl sample. * Multi-theme support. * NativeMenu on macOS. * GitHub workflow for Windows, Linux and MacOS artifact compilation.
13 lines
203 B
C#
13 lines
203 B
C#
using System;
|
|
|
|
namespace AvaloniaCoreRTDemo
|
|
{
|
|
public enum ApplicationTheme : Byte
|
|
{
|
|
DefaultLight = 0,
|
|
DefaultDark = 1,
|
|
FluentLight = 2,
|
|
FluentDark = 3,
|
|
}
|
|
}
|