PasswordBox.Paste Metod
Definition
Viktigt
En del information gäller för förhandsversionen av en produkt och kan komma att ändras avsevärt innan produkten blir allmänt tillgänglig. Microsoft lämnar inga garantier, uttryckliga eller underförstådda, avseende informationen som visas här.
Ersätter den aktuella markeringen i med innehållet i PasswordBox Urklipp.
public:
void Paste();
public void Paste();
member this.Paste : unit -> unit
Public Sub Paste ()
Exempel
I följande exempel visas hur du klistrar in innehåll i en PasswordBox med Paste -metoden.
// 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()
Kommentarer
Den här metoden rensar inte innehållet i PasswordBox före klistra in. Den ersätter antingen den aktuella markeringen med inklistrade innehåll eller infogar det inklistrade innehållet på den aktuella markörens position.