编写成右键事件:
1 private void 复制ToolStripMenuItem_Click(object sender, EventArgs e)
2 {
3 var cellText = this.dataGridView1.CurrentCell.Value == null ? "" : this.dataGridView1.CurrentCell.Value.ToString();
4 Clipboard.SetDataObject(cellText);
5 }
使用快捷键Ctrl+C:
1 private void dataGridView1_KeyUp(object sender, KeyEventArgs e)
2 {
3 if (e.Modifiers.CompareTo(Keys.Control) == 0 && e.KeyCode == Keys.C)
4 {
5 Clipboard.SetDataObject(this.dataGridView1.CurrentCell.Value.ToString());
6 }
7 }
使用Clipboard.SetText()
向剪贴板写入字符串时,偶尔会引发System.Runtime.InteropServices.ExternalException
异常,异常信息如下:
说明: 由于未经处理的异常,进程终止。 异常信息: System.Runtime.InteropServices.ExternalException 在 System.Windows.Forms.Clipboard.ThrowIfFailed(Int32) 在 System.Windows.Forms.Clipboard.SetDataObject(System.Object, Boolean, Int32, Int32) 在 System.Windows.Forms.Clipboard.SetText(System.String, System.Windows.Forms.TextDataFormat) 在 System.Windows.Forms.Clipboard.SetText(System.String)
由于剪贴板是系统的公共资源,当有多个程序同时访问时,会引发异常。
解决方案:
可以使用Clipboard.SetDataObject()
方法代替Clipboard.SetText()
,并设置重试次数与重试间隔:
Clipboard.SetDataObject(text, true, 10, 200);
原文链接:https://www.cnblogs.com/weca/p/10789801.html