如何将插入符号位置设置为 WPF 密码框中的特定索引
我需要在 WPF 中显式设置密码框中的光标位置。 我在密码框中看不到选择开始属性。
有什么帮助吗?
I need to set the cursorposition inside the passwordbox explicitly in WPF. I couldn't see the selectionstart property in passwordbox.
Any help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以尝试这样的方法来设置密码框中的选择:
之后,像这样调用它来设置光标位置:
You can try something like this to set the selection in the PasswordBox:
After that, call it like this to set the cursor position:
不,PasswordBox 的 API 没有公开执行此操作的方法。
No, the API for PasswordBox does not expose a way to do this.