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

时间:2009-06-13 08:26:57

标签: c# wpf textbox cursor passwordbox

我需要在WPF中明确设置密码框内的cursorposition。我在passwordbox中看不到selectionstart属性。

任何帮助?

2 个答案:

答案 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没有公开这样做的方法。