Hi,
Hi have 13 xamCurrencyEditor.
The first time i touch (with touche screen) on xamCurrencyEditor the default keyboard appears and a second fraction after the numeric keypad appears.
This is acceptable because it's the keypad that I want.
The problem is that if I modify a control I have already modified it is the default keyboard that appears and not the numeric keyboard
Francois.
I just saw that when the second time I touch on the control it is not in edit mode. If re-touch again and it enter in edit mode and my numeric keypad appears.
Why the first time i touch the xamCurrencyEditor it enters edit mode and the second time no?
I also noticed that the problem is there when we are in tablet mode
Hello GIPFG,
I have logged this behavior in our internal tracking system with a Development ID of 233330. The next step will be for a developer to review my investigation and confirm my findings or to offer a fix, or other resolution.
As a workaround, what you could try is to subscribe to the PreviewTouchDown event and call StartEditMode() method.The following snippet code illustrates this:
private void XamEditor_PreviewTouchDown(object sender, TouchEventArgs e){ (sender as XamCurrencyEditor).StartEditMode();}
Please let me know if you have any other questions on this matter.