我是靠谱客的博主 小巧冬瓜,最近开发中收集的这篇文章主要介绍VS中C#复制、粘贴文本信息到剪贴板,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

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

有些地方要要求双击某个控件,得到这个控件的一些信息,并复制剪切板上,用上面的函数就可以实现了。


最后

以上就是小巧冬瓜为你收集整理的VS中C#复制、粘贴文本信息到剪贴板的全部内容,希望文章能够帮你解决VS中C#复制、粘贴文本信息到剪贴板所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(48)

评论列表共有 0 条评论

立即
投稿
返回
顶部