PasswordBox.Paste 方法

定義

以 [剪貼簿] 的內容取代 PasswordBox 中目前的選取範圍。

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

範例

下列範例示範如何使用 方法將內容貼入 PasswordBox Paste

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

備註

這個方法不會清除貼上之前 的內容 PasswordBox ;它會將目前的選取範圍取代為貼上的內容,或將貼上的內容插入目前游標位置。

適用於