Windows Phone 7 中密码文本的击键延迟

发布于 2024-12-21 07:11:31 字数 263 浏览 1 评论 0原文

我正在开发一个 Windows Phone 7 应用程序。

我有一个要求,其中有一个密码文本框,当用户开始在文本框中输入字母时,每个字母应按原样显示 1 秒,然后转换为密码点 (.)。

应该有一些延迟,以便用户应该能够看到他输入的内容一秒钟,然后应该被屏蔽。

在android中有一种方法 mHandler.postDelayed(new SetPassword(), 1000);

我也想以类似的方式对 Windows Phone 7 进行操作。

I am developing a windows phone 7 application.

I have requirement where there is a password text box and when user starts typing the letters into the text box, each letter should appear as it is for 1 sec and then get converted to password dot (.).

There should be some delay such that user should be able to see what he has typed for one second and then it should be masked.

In android there is a way mHandler.postDelayed(new SetPassword(), 1000);

I would like to do it in a similar fashion for Windows Phone 7 as well.

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

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

发布评论

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

评论(2

﹎☆浅夏丿初晴 2024-12-28 07:11:31

这是PasswordBox 控件中的默认行为,用于短暂显示用户键入的内容。您需要设置自定义延迟,或者您只是找不到该控件?

This is a default behavior in PasswordBox control to show what the user type for a few moments. You need to set custom delay or you just don't find that control?

折戟 2024-12-28 07:11:31

使用登录页面出现时运行的计时器。有了这个帮助,您可以随时延迟和显示点,并在计时器停止时掩盖它。

Use a timer that runs when the login page comes. With that help u can always delay and display the dots and mask it when ever timer stops.

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