Questions tagged [inputscope]

31 questions
1
vote
4 answers

How to implement TextBox.InputScope in WPF

I'm searching for a way to implement the InputScope of a Textbox like it is done in Wp7, but using classic WPF. What I want to achieve is, that the input is restricted to only use decimal numbers. How can I achieve that?
BitKFu
  • 3,649
  • 3
  • 28
  • 43
0
votes
1 answer

Difficulty adding a inputscope to a TextBox within a StackPanel

So I'm trying to improve the functionality on a text box, by adding a 'text' style input scope on this occasion, later I will need to add a 'currency' inputscope. I'm using EB4 as its easier to get direct access to contents within a stack panel,…
AlexDuncan
  • 95
  • 1
  • 3
  • 12
0
votes
1 answer

InputScope for coordinates (minus needed)

I need have a textbox where user can input latitude and longitude, eg. 51.499167, -0.124722 for Palace of Westminster. The problem is, that InputScope numerical hasn't Minus char. Has some the same problem and has a solution?
user278618
  • 19,306
  • 42
  • 126
  • 196
0
votes
1 answer

Watching the InputScope of a TextBox?

How do we grab the event that is generated when the inputscope of a TextBox is set to search and the Arrow is pressed?
Jay Kannan
  • 1,372
  • 3
  • 14
  • 30
0
votes
1 answer

How to specify classic key board layout in UWP app

I want to specify classic touch keyboard layout(one with number bar on top) in login page of my UWP app. I understand that it can be done by specifying InputScope="NameOrPhoneNumber" etc. Reference…
0
votes
1 answer

WPF InputScope not working on Dialoghost .NET 6

I have a dialogHost with a textbox, I need the inputscope to be numeric since the TouchKeyboard is used, in the user control it works fine but in the dialog the keyboard layout does not change.
Spieler
  • 11
  • 1
0
votes
1 answer

Windows IoT UWP Pivot Item with PasswordBox in a Content Dialog

I am trying to implement a passwordbox within a pivotitem with content dialog. I want to find out if upon clicking on the pivotitem using pointerpressed is suitable to trigger the dialog for password? Also how do handle the event once the pivotitem…
mylim
  • 313
  • 4
  • 16
0
votes
1 answer

InputScope dependency property, XAML designer problems + errors

I have a control that consists of a button and a textbox. I wanted to set the input scope of the textbox, so I introduced a new dependency property: public InputScope InputScope { get { return (InputScope)GetValue(InputScopeProperty); } set…
hungariandude
  • 376
  • 2
  • 9
  • 23
0
votes
1 answer

How to exclude something from the keyboard?

Is it possible on a windows phone to exclude something from the keyboard? I want to exclude the "," and keep only the "." character on the keyboard with InputScope="Number".
Manos
  • 149
  • 1
  • 12
0
votes
1 answer

WinRT Xaml Numeric Keyboard doesn't popup

I have an universal app and in my app I am using InputScope="Number" for many of my textboxes. And in phone application all working, but in windows tablet app when I use it in emulator it opens numberic keyboard (however I am still able to…
Yawar
  • 1,924
  • 3
  • 29
  • 39
0
votes
2 answers

Windows Phone 8 input keyboard

I have form of adding members in phone application page, in that form, one field is ZIP CODE, so how do I get keyboard of numbers on text changed event? thanks!!
Viraj Shah
  • 308
  • 1
  • 12
0
votes
1 answer

How can I add InputScope property to my custom passwordBox in WinRT?

I have a custom control is named WatermarkPasswordBox and I want to add InputScope property for using numeric virtual keyboard in WinRT, Win8. But it's base class is not Textbox, it's base class is Control. How can I do it? Thanks.
0
votes
1 answer

How can I change keyboard style to Numeric in Winrt?

I was using InputScope in Windows Phone for open numeric Keyboard and I need its equaivalent in WinRT, Windows8. How can I do it? Thanks.
0
votes
1 answer

InputScope for TextBox not working anymore?

In my WinRT/C# app I have a XAML file with various input boxes (TextBox). Each textbox has an InputScope property defined, thus the on-screen keyboard should display individually (e.g. for InputScope="Number"). In the Win8 Release Preview the…
Matthias
  • 3,403
  • 8
  • 37
  • 50
0
votes
1 answer

Windows Phone 7 TextBox doesn't allow type space

I have the next XAML code:
Nodir
  • 359
  • 1
  • 3
  • 17