string themePath = mode ? "themes/DarkTheme.xml" : "themes/LightTheme.xml"; var uri = new URI(themePath, UriKind.Relative); ResourceDictionary themeDict = new ResourceDictionary { Source = uri }; Application.Current.Resources.MergeDictionaries.Clear(); Application.Current.Resources.MergeDictionaries.Add(themeDict);