In Windows 10, high contrast theme is the only theme which behaves differently than the default Windows 10 theme with regards to the borders.
I want to detect if the user is in High Contrast theme in Windows 10 for this purpose.
In Windows 10, high contrast theme is the only theme which behaves differently than the default Windows 10 theme with regards to the borders.
I want to detect if the user is in High Contrast theme in Windows 10 for this purpose.
We can use AccessibilitySettings class to get the info high contrast. And use AccessibilitySettings.HighContrast to indicate whether the system high contrast feature is on or off.
For example:
Windows::UI::ViewManagement::AccessibilitySettings^ accessibilitySettings = ref new Windows::UI::ViewManagement::AccessibilitySettings;
Boolean ishighcontrast = accessibilitySettings->HighContrast;
The way to determine if the system is currently in High contrast mode is to use
SystemParametersInfo
to get aHIGHCONTRAST
structure which has all the information you need.A simple example:
See the documentation for
HIGHCONTRAST
for information about what other flags are available.