
Hi,
The backgound color for native controls like StackPanel, TabControl, Menu, etc. do not change when going to the Dark theme. How do get this to work? I am using the following initialization code:
ImageProvider.Default.ChromaticAdaptationMode = ImageChromaticAdaptationMode.DarkThemes;
ImageProvider.Default.UseMonochromeInHighContrast = true;
ThemeManager.BeginUpdate();
try
{
ThemeManager.AreNativeThemesEnabled = true;
ThemeManager.CurrentTheme = ThemeNames.MetroDark;
}
finally
{
ThemeManager.EndUpdate();
}
Thanks.