PasswordBox.Paste Methode

Definition

Ersetzt die aktuelle Auswahl in der PasswordBox durch den Inhalt der Zwischenablage.

public:
 void Paste();
public void Paste ();
member this.Paste : unit -> unit
Public Sub Paste ()

Beispiele

Im folgenden Beispiel wird gezeigt, wie Sie Inhalte in eine PasswordBox Mit der Paste Methode einfügen.

  // 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();
' A TextBox will serve as a contrived means of putting our test 
' password on the Clipboard.
Dim txtBox As New TextBox()
Dim pwdBox As 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()

Hinweise

Diese Methode löscht den Inhalt der PasswordBox vor dem Einfügen nicht; sie ersetzt entweder die aktuelle Auswahl durch eingefügten Inhalt, oder fügen Sie den eingefügten Inhalt an der aktuellen Cursorposition ein.

Gilt für