Прочитај на енглеском Уреди

Делите путем


PasswordBox.Paste Method

Definition

Replaces the current selection in the PasswordBox with the contents of the Clipboard.

C#
public void Paste();

Examples

The following example shows how to paste content into a PasswordBox with the Paste method.

C#
  // A TextBox will serve as a contrived means of putting our test 
  // password on the Clipboard.
  TextBox txtBox = new TextBox();
  PasswordBox pwdBox = new PasswordBox();

  // Put some content in the TextBox, and copy it to the Clipboard.
  txtBox.Text = "Open Sesame!";
  txtBox.SelectAll();
  txtBox.Copy();

  // Paste the contents of the Clipboard into the PasswordBox.  After this
  // call, the value of pwdBox.Password == "Open Sesame!".
  pwdBox.Paste();

Remarks

This method does not clear the contents of the PasswordBox before the paste; it will either replace the current selection with pasted content, or insert the pasted content at the current cursor position.

Applies to

Производ Верзије
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10