PasswordBox.Paste Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Zamienia bieżące zaznaczenie w obiekcie PasswordBox na zawartość Schowka.
public:
void Paste();
public void Paste ();
member this.Paste : unit -> unit
Public Sub Paste ()
Przykłady
W poniższym przykładzie pokazano, jak wkleić zawartość do PasswordBox obiektu za pomocą Paste metody .
// 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()
Uwagi
Ta metoda nie czyści zawartości PasswordBox obiektu przed wklejaniem. Zastąpi bieżące zaznaczenie wklejoną zawartością lub wstawi wklejoną zawartość w bieżącym położeniu kursora.