
* UserControl sample. * Multi-theme support. * NativeMenu on macOS. * GitHub workflow for Windows, Linux and MacOS artifact compilation.
10 lines
161 B
C#
10 lines
161 B
C#
using AvaloniaCoreRTDemo.Interfaces;
|
|
|
|
namespace AvaloniaCoreRTDemo
|
|
{
|
|
public interface IMainWindow
|
|
{
|
|
IThemeSwitch ThemeSwitch { get; }
|
|
}
|
|
}
|