码迷,mamicode.com
首页 > Windows程序 > 详细

C# 复制、粘贴文本信息到剪贴板

时间:2016-11-23 23:50:21      阅读:335      评论:0      收藏:0      [点我收藏+]

标签:oar   nes   data   .text   present   trie   selected   粘贴   nbsp   

复制:
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完成。

C# 复制、粘贴文本信息到剪贴板

标签:oar   nes   data   .text   present   trie   selected   粘贴   nbsp   

原文地址:http://www.cnblogs.com/testsec/p/6095518.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!