I need the auto-correct functionality of the Text InputScope, but I also want the white submit button provided with the Search InputScope (otherwise it isn't intuitive to users how to proceed from the box).
Is there any way to write my own InputScopes so that I can control these features independently? Or is there a way to apply more than one scope for combined functionality?
Here's the code:
This has the button but no auto-correct:
<TextBox x:Name="InputBox" InputScope="Search" AcceptsReturn="False" KeyUp="InputBox_KeyUp"/>
And this had auto-correct but no button:
<TextBox x:Name="InputBox" InputScope="Text" AcceptsReturn="False" KeyUp="InputBox_KeyUp"/>
For the record, I've read this post and I really hope it doesn't come to that.