Remove old theme service completely.

This commit is contained in:
Burak Kaan Köse
2025-10-03 21:17:41 +02:00
parent 1c49b69332
commit e42ebb49ae
9 changed files with 15 additions and 18 deletions
@@ -13,13 +13,13 @@ public sealed partial class CustomThemeBuilderDialog : ContentDialog
public byte[] WallpaperData { get; private set; }
public string AccentColor { get; private set; }
private IThemeService _themeService;
private INewThemeService _themeService;
public CustomThemeBuilderDialog()
{
InitializeComponent();
_themeService = WinoApplication.Current.Services.GetService<IThemeService>();
_themeService = WinoApplication.Current.Services.GetService<INewThemeService>();
}
private async void ApplyClicked(ContentDialog sender, ContentDialogButtonClickEventArgs args)