复制:
private void button1_Click(object sender, System.EventArgs e) {
// Takes the selected text from a text box and puts it on the clipboard.
if(textBox1.SelectedText != ”")
Clipboard.SetDataObject(textBox1.SelectedText);
}
粘贴:
private void button2_Click(object sender, System.EventArgs e) {
// Declares an IDataObject to hold the data returned from the clipboard.
// Retrieves the data from the clipboard.
IDataObject iData = Clipboard.GetDataObject();
// Determines whether the data is in a format you can use.
if(iData.GetDataPresent(DataFormats.Text)) {
// Yes it is, so display it in a text box.
textBox2.Text = (String)iData.GetData(DataFormats.Text);
}
}
复制:http://www.cnblogs.com/michaelxu/archive/2008/11/04/1326184.html
本文介绍了一种使用C#实现的复制与粘贴功能的方法。通过简单的代码示例展示了如何将文本框中的选定文本复制到剪贴板,并从剪贴板中获取数据并粘贴到另一个文本框。

485





