views:

407

answers:

2

Hi

I need to set the cursorposition inside the passwordbox explicitlyin WPF. i couldn't see the selectionstart property in passwordbox.

Any help?

A: 

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

HTH, Kent

Kent Boogaart
Thanks Kent. Is there a way i can achieve this using the textbox control.
deepak
A: 

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();
Andrew Jackson