Questions tagged [inputscope]

31 questions
6
votes
1 answer

WP7/8 changing InputScope dynamically after an event using C#

I'm making an app for Windows Phone, I've been trying for ages to get the InputScope of the main text box to change when the orientation is changed to landscape (so that the keyboard takes up less space in landscape without the autocorrect bar), and…
huntie
  • 950
  • 9
  • 14
5
votes
1 answer

C# XAML InputScope="Number" present unneeded special characters

I am trying to present only a numeric keyboard. I keep getting the special character region of characters on the left while I would just like to have the num pad region on the right. (See Image Below) XAML:
dcary
  • 326
  • 1
  • 7
  • 13
4
votes
1 answer

Turn off Word Suggestion with Inputscope="Search"

I have a Search Box which is an AutoComplete box In my view having word suggestions with auto complete box makes no sense and occupies additional screen space, but I like Search keyboard layout, so help me to turn of word suggestion with inputscope…
Mubashar
  • 12,300
  • 11
  • 66
  • 95
3
votes
1 answer

How do I change the on-screen keyboard for a PasswordBox

I have a box that I want to take a password of only numbers (like an ATM-card PIN), how is the best way to do that? Requirements: Password (with the hidden numbers) Typing digits as the default (only?) keyboard What I've tried: I thought that…
McKay
  • 12,334
  • 7
  • 53
  • 76
2
votes
2 answers

Is there any way to combine or create custom InputScopes for a TextBox on Windows Phone?

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…
Subcreation
  • 1,353
  • 12
  • 26
2
votes
4 answers

How to add a numeric textbox in WP7 which can take a float value?

I am developing WP7 application. I am new to the WP7. I am also new to the silverlight. I have a textbox in my application. In this textbox user enters the amount. I want to give the facility in my application so that user can enter the float amount…
2
votes
0 answers

Change input scope for textbox programmatically multiple times on Windows Phone 8.1 app

I am trying to change the input scope for a textbox in Windows Phone 8.1 app programmatically at runtime, but the change only works the first time. I have this xaml page:
sath
  • 93
  • 1
  • 8
2
votes
1 answer

Binding InputScope with a converter in Windows Phone 8.1

I'm trying to bind the InputScope Value of a textbox on a type. For this I use a converter : Xaml :
Bleik
  • 43
  • 5
2
votes
1 answer

How can I add InputScope property to PasswordBox in WinRT?

How can I add Input Scope property to my User Control's PasswordBox? Could you explain it to me, please? Thanks.
1
vote
1 answer

Erasing previous data (String/Ints) in multiple textBoxes, when inputting new data via the inputScope

When dealing with multiple textBoxes for WP7 dev, how to you get the textBox to erase the previous data (string/int) which was previously entered and just display a blank textBox?
AlexDuncan
  • 95
  • 1
  • 3
  • 12
1
vote
1 answer

InputScopeNameValue.PhraseList in a WP7 app

Has anyone used InputScopeNameValue.PhraseList as an inputscope filter in a WP7 TextBox? Let's say I have a list of tags and I want the TextBox SIP to autosuggest words that come from that set. The InputScopeNameValue.PhraseList inputscope is…
Omri
  • 11
  • 1
1
vote
2 answers

Change input scope for Password text boxes on Windows Phone 7

How can you do the equivalent of changing the input scope on the password text boxes in WP7? They don't have an input scope field so I'm not sure how to do it. I'd like to have a password box where you can only use digits as your password, like the…
Zain Rizvi
  • 23,586
  • 22
  • 91
  • 133
1
vote
1 answer

Can't set InputScope of RichEditBox to "Text" in Windows Phone 8.1 app

In a Windows 8.1 app I'm not able to set the InputScope-property of the RichEditBox to "Text" although, according to the documentation, it should be possible. The option is missing in the enumeration but I don't understand why. I get the following…
anagels
  • 11
  • 1
1
vote
1 answer

How to turn the text prediction on/off on Soft Keyboard while the user is typing

I have a RichEditBox for which I want to turn the TextPrediction on and off while the user is typing. This is the code I am trying but its just not working. It requires the keyboard to be relaunched/reopened to show the changes. private void…
Rishabh876
  • 3,010
  • 2
  • 20
  • 37
1
vote
1 answer

How to remove the dot on keyboard in WP 8.1 when the InputScope is Number

In WP 8.1, I have a TextBox whose InputScope it set to Number. (InputScope="Number") However, this comes with a dot and I'd like to be able to remove it from the keyboard. I'd like the keyboard to have numerical values only as well as the backspace…
Mark13426
  • 2,569
  • 6
  • 41
  • 75
1
2 3