复制:
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);
}
}
主要通过调用Clipborad的API完成。
相关文章
- MVVM捕获剪切,复制和粘贴文本框事件
- 【c#】从外部复制文本、图片到我的软件中的解决方案(支持ppt,qq等)
- C#操作剪贴板实现复制粘贴
- 重新想象 Windows 8 Store Apps (40) - 剪切板: 复制/粘贴文本, html, 图片, 文件
- 1)C# 实现复制粘贴文件夹及文件 2)在Winform工程中怎样调用dos下复制粘贴命令。
- 在HTML5中,如何在没有flash的情况下将文本复制到剪贴板上?
- C#控制台基础 filestream实现文件的复制粘贴
- 用于将文本复制到剪贴板的Python脚本[重复]
- 关于pycharm中缩进、粘贴复制等文本编辑功能部分失效的解决办法
- clipboard.js -- js实现将文本复制到剪贴板的方法