更改 Windows Phone 7 上密码文本框的输入范围

发布于 2024-11-03 21:03:26 字数 109 浏览 0 评论 0原文

如何才能完成与更改 WP7 中密码文本框的输入范围等效的操作?他们没有输入范围字段,所以我不知道该怎么做。

我想要一个只能使用数字作为密码的密码框,就像手机锁屏一样。

谢谢

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 phone lock screen.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

゛时过境迁 2024-11-10 21:03:26

无法设置PasswordBox 的输入范围。如果您确实必须这样做,则必须创建自己的控件。

如果制作您自己的手机锁屏版本,我建议您使用 TextBlock 和一些 (12) Buttons 而不是密码框或文本框。

There is no way to set the inputscope of the PasswordBox. If you really must do this you'll have to create your own control.

If making your own version of the phone lock screen I'd recommend looking at using a TextBlock and a number (12) of Buttons rather than a PasswordBox or TextBox.

以往的大感动 2024-11-10 21:03:26

是的,正如马特所说,最简单的事情就是

textChanged events
keyUp event  
keyDown event

根据您的要求操作 textbox.text 属性。这比实施新的控制要容易得多。

Yes as Matt says, the easy thing to do would be to have the

textChanged events
keyUp event  
keyDown event

to manipulate the textbox.text property according to your requirement. This will be much easier than implementing a new control.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文