Clue
Clue

Reputation: 119

Change color of visual keyboard in C#

Is there a way to change the visual keyboard-theme via C#? Or at least, some way to edit its properties, like background color etc?

Upvotes: 0

Views: 945

Answers (3)

Joel
Joel

Reputation: 2361

Nope, this is one of those things that cannot be changed by third party applications short of various hacks (which would not be allowed in the marketplace). In general if something is controlled by a user setting then an application will have no way of changing it. You can detect whether the user has selected the light or dark theme and change the colours in your application accordingly, but your application cannot change system settings.

Upvotes: 1

Igor Kulman
Igor Kulman

Reputation: 16369

Try changing ApplicationBar or maybe Systray background and foreground colors. I saw an app that had ApplicationBar and Systray set to white background and back foreground and the keyboard was black on white even with the dark theme. I think there may be a correlation.

Upvotes: 0

Leon Lucardie
Leon Lucardie

Reputation: 9740

Except for the InputScope (to open a numeric only keyboard etc.) and overriding key presses, there is currently no way to change any part of the visual Windows Phone keyboard.

Upvotes: 3

Related Questions