Reputation: 205
I have seen other posts surrounding the subject,
but i want to change only the enter(return) key, not the whole keyboard.
Just like in the windows phone 8 store
where the enter button has a white color.
Upvotes: 5
Views: 1498
Reputation: 926
You can change layout of the windows phone keyboard using InputScope
property.
Try: <TextBox InputScope="Search" />
You can find all available layouts here: http://msdn.microsoft.com/en-us/library/ff426929(v=vs.95).aspx
Upvotes: 3