2011年1月25日 星期二

C# Copy DataGridView 資料

懶的自己全選複製
所以寫成一個Button可以點


dataGridView1.SelectAll();
if (this.dataGridView1
.GetCellCount(DataGridViewElementStates.Selected) > 0)
{
try
{
// Add the selection to the clipboard.
Clipboard.SetDataObject(
this.dataGridView1.GetClipboardContent());
}
catch (System.Runtime.InteropServices.ExternalException)
{
}
}


參考網站

沒有留言:

張貼留言