我需要在WPF中明确设置密码框内的cursorposition。我在passwordbox中看不到selectionstart属性。
任何帮助?
答案 0 :(得分:11)
您可以尝试使用类似的方法在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();
答案 1 :(得分:1)
不,PasswordBox的API没有公开这样做的方法。