TextBoxBase.Paste 方法

定义

将剪贴板的内容粘贴到文本编辑控件中的当前选定内容上。

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

示例

以下示例演示如何使用 Paste 该方法将所选内容粘贴到 TextBox 控件中。

private void pasteSelection(object sender, RoutedEventArgs e)
{
    myTextBox.Paste();
}
Private Sub pasteSelection(ByVal sender As Object, ByVal e As RoutedEventArgs)
    myTextBox.Paste()
End Sub

适用于

另请参阅