弹指一挥间

好好做事,学习待人 (大数据分析/.NET/JAVA)技术交流QQ:860280456; .NET/JAVA技术交流群:192028174

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
//复制: 
private void button1_Click(object sender, System.EventArgs e) { 
  //如果选中部分不为空 把选中的内容复制到剪贴板 
 
  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); 
  } 
}
posted on 2013-01-20 23:56  v.e.n.u.s  阅读(779)  评论(0编辑  收藏  举报