I’m trying to work out how to have an Image control in my Windows Phone application invert its colors based on the global background setting (either “Dark” or “Light”) chosen by the user in Settings->Themes->Background.
I’m trying to work out how to have an Image control in my Windows
Share
There is no built-in way to invert image colors within the framework.
Instead, because of the overhead of doing this on the phone, you should create both versions of the image at design/build time and then choose which version to display from your code by detecting Theme Visibility and Opacity.