Skip to content

Commit

Permalink
Fix build error
Browse files Browse the repository at this point in the history
  • Loading branch information
Kinnara committed Aug 30, 2020
1 parent 72958b1 commit 2ed1c10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions samples/FluentRibbonSample/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ private void ToggleTheme(object sender, RoutedEventArgs e)
if (ThemeManager.Current.ActualApplicationTheme == ApplicationTheme.Dark)
{
ThemeManager.Current.ApplicationTheme = ApplicationTheme.Light;
Fluent.ThemeManager.ChangeThemeBaseColor(Application.Current, "Light");
ControlzEx.Theming.ThemeManager.Current.ChangeThemeBaseColor(Application.Current, "Light");
}
else
{
ThemeManager.Current.ApplicationTheme = ApplicationTheme.Dark;
Fluent.ThemeManager.ChangeThemeBaseColor(Application.Current, "Dark");
ControlzEx.Theming.ThemeManager.Current.ChangeThemeBaseColor(Application.Current, "Dark");
}
}

Expand Down

0 comments on commit 2ed1c10

Please sign in to comment.