mirror of
https://github.com/PacktPublishing/Learn-WinUI-3-Second-Edition.git
synced 2026-06-20 12:23:09 +00:00
18 lines
285 B
C#
18 lines
285 B
C#
using Microsoft.UI.Xaml;
|
|
|
|
namespace TemplateStudioSampleApp.Contracts.Services;
|
|
|
|
public interface IThemeSelectorService
|
|
{
|
|
ElementTheme Theme
|
|
{
|
|
get;
|
|
}
|
|
|
|
Task InitializeAsync();
|
|
|
|
Task SetThemeAsync(ElementTheme theme);
|
|
|
|
Task SetRequestedThemeAsync();
|
|
}
|