如何将插入符号位置设置为 WPF 密码框中的特定索引

发布于 2024-07-24 10:09:40 字数 67 浏览 10 评论 0原文

我需要在 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 技术交流群。

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

发布评论

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

评论(2

烈酒灼喉 2024-07-31 10:09:40

您可以尝试这样的方法来设置密码框中的选择:

private void SetSelection(PasswordBox passwordBox, int start, int length) {
    passwordBox.GetType().GetMethod("Select", BindingFlags.Instance | BindingFlags.NonPublic).Invoke(passwordBox, new object[] { start, length });
}

之后,像这样调用它来设置光标位置:

// set the cursor position to 2...
SetSelection( passwordBox1, 2, 0);

// focus the control to update the selection
passwordBox1.Focus();

You can try something like this to set the selection in the PasswordBox:

private void SetSelection(PasswordBox passwordBox, int start, int length) {
    passwordBox.GetType().GetMethod("Select", BindingFlags.Instance | BindingFlags.NonPublic).Invoke(passwordBox, new object[] { start, length });
}

After that, call it like this to set the cursor position:

// set the cursor position to 2...
SetSelection( passwordBox1, 2, 0);

// focus the control to update the selection
passwordBox1.Focus();
ゝ杯具 2024-07-31 10:09:40

不,PasswordBox 的 API 没有公开执行此操作的方法。

No, the API for PasswordBox does not expose a way to do this.

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