public ThemeSelectionPageViewModel(IThemeService themeService) { _themeService = themeService; var selectedTheme = Themes.FirstOrDefault(x => x.Theme == _themeService.CurrentTheme()); selectedTheme.IsSelected = true; }