Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 WP 8.1 中,我将TextBox其InputScope设置为Number. ( InputScope="Number") 但是,它带有一个点,我希望能够将它从键盘上删除。我希望键盘只有数值以及退格(清除)按钮。
TextBox
InputScope
Number
InputScope="Number"
没有办法专门改变键盘。您可以为数字设置键盘,但不能专门为整数设置键盘。您必须在收到结果时对其进行过滤(无论如何您都需要这样做,因为可以粘贴文本)。TextChanged 事件是执行此操作的好地方。