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

来源:互联网 发布:二手房软件排名 编辑:程序博客网 时间:2024/05/26 12:59

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

复制:
private void button1_Click(object sender, System.EventArgs e) {
  // Takes the selected text from 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 format you can use.
  if(iData.GetDataPresent(DataFormats.Text)) {
  // Yes it is, so display it in text box.
  textBox2.Text (String)iData.GetData(DataFormats.Text); 
  }
}
主要通过调用ClipboradAPI完成。

 

 

 

 

现在,没那么复杂吧!虽然是可以。
不如直接写。
加入文本框控件名叫“txtEdit”
复制:txtEdit.Copy();
粘贴:txtEdit.Paste();