DataGrid上的DataGridView.GetClipboardContent()等效

时间:2009-09-25 16:39:36

标签: c# winforms

我无法在DataGrid VC ++上找到DataGridView.GetClipboardContent()的等效方法.Net Framework 1.1,如果不存在我怎样才能获得相同的功能,我的意思是复制剪贴板对象上的所有行和标题然后将其粘贴到Excel工作表...

//code for send data to excel
dataGridView1.SelectAll();
DataObject dataObj = dataGridView1.GetClipboardContent();
Clipboard.SetDataObject(dataObj, true);
ws.Paste(System.Type.Missing, System.Type.Missing); // ws = worksheet
dataGridView1.ClearSelection();

由于

1 个答案:

答案 0 :(得分:1)

您是否尝试过this