我需要在WPF中显式设置密码框中的光标位置。我在密码框中看不到selectionstart属性。
有什么帮助吗?
最佳答案
您可以尝试使用以下方法在PasswordBox中设置选择:
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();
关于c# - 如何在WPF的密码框中将插入符位置设置为特定索引,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/990311/