PasswordBox.Paste Méthode

Définition

Remplace la sélection actuelle dans la zone de mot de passe PasswordBox par le contenu du Presse-papiers.

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

Exemples

L’exemple suivant montre comment coller du Paste contenu dans une PasswordBox méthode.

  // 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()

Remarques

Cette méthode ne efface pas le contenu du PasswordBox collage ; elle remplace la sélection actuelle par le contenu collé ou insère le contenu collé à la position actuelle du curseur.

S’applique à