WPF 密码框插入符
如何使用 WPF 虚拟键盘来使用密码框控件? 使用文本框控件,只需将插入符号移动到下一个文本位置就相当简单了; 密码框则不然,它不会暴露插入符号的位置。
我应该自己导出吗? 看起来酱汁很淡。
How do I use a passwordbox control with a virtual keyboard using WPF? With the textbox control, it's fairly simple to just move the caret to the next text position; not so with passwordbox, which doesn't expose the caret position.
Should I just derive my own? Seems like weak sauce.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试这样的方法来设置密码框中的选择:
之后,像这样调用它来设置光标位置:
上面的答案由 安德鲁·杰克逊,效果很好。
You can try something like this to set the selection in the PasswordBox:
After that, call it like this to set the cursor position:
The above answer is provided by Andrew Jackson and it works fine.