Rank: Newbie Groups: Member
Joined: 5/8/2020 Posts: 3
|
Hi EO Support Team, I just upgraded to the latest EO WPF Browser. I’ve noticed that the Reporting Service doesn’t seem to support dark mode properly. When using EO Browser, it follows the default Windows theme and switches to dark mode. Could you let me know if there’s a way to enable light mode instead? Thanks for your help! Best, Gary
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,481
|
Hi, You can use this method to disable automatic dark mode: https://www.essentialobjects.com/doc/eo.webengine.engineoptions.setfeaturestate_overload_1.htmlFor example:
Code: C#
EO.WebEngine.EngineOptions.Default.SetFeatureState(
EngineFeature.DarkMode, EngineFeatureState.Disabled);
Thanks!
|
Rank: Newbie Groups: Member
Joined: 5/8/2020 Posts: 3
|
That’s perfect. Thank you for your support!
|