public async void DeselectActiveLockscreenThemeDialog()
        {
            ContentDialog deleteDialog = new ContentDialog
            {
                Title             = "Deselect Lockscreen Theme?",
                Content           = "If you deselect this theme it will no longer automatically update your Lockscreen Background",
                PrimaryButtonText = "Deselect",
                CloseButtonText   = "Cancel"
            };

            ContentDialogResult result = await deleteDialog.ShowAsync();

            if (result == ContentDialogResult.Primary)
            {
                ActiveThemeService activeThemeService = new ActiveThemeService();
                activeThemeService.DeselectActiveLockscreenTheme();
                ActiveLockscreenTheme = null;
            }
        }
        public async void DeleteThemeDialog()
        {
            ContentDialog deleteDialog = new ContentDialog
            {
                Title             = "Delete Theme Permanently?",
                Content           = "If you delete this theme you will not be able to recover it. Are you sure you want to PERMANENTLY delete this Theme?",
                PrimaryButtonText = "Delete",
                CloseButtonText   = "Cancel"
            };

            ContentDialogResult result = await deleteDialog.ShowAsync();

            if (result == ContentDialogResult.Primary)
            {
                // Check the Active Themes and get rid of them if needed
                ActiveThemeService activeThemeService = new ActiveThemeService();
                if (activeThemeService.GetActiveDesktopThemeID() == Theme.ID)
                {
                    activeThemeService.DeselectActiveDesktopTheme();
                }
                if (activeThemeService.GetActiveLockscreenThemeID() == Theme.ID)
                {
                    activeThemeService.DeselectActiveLockscreenTheme();
                }

                // Delete the theme
                var theme = ThemeRepository.Find(Theme.ID);
                if (theme == null)
                {
                    return;
                }
                ThemeRepository.RemoveAndCommit(Theme.ID);

                // Redirect to the MainPage
                MainViewModel.Instance.NavigateThemesCommand.Execute(null);
            }
        }