単純なデータ グリッド ビューがあり、その内容を次のようにコピーしています。
これをメモ帳に貼り付けると、次のように表示されます。
1 Jake と 3 Tom の間の空白行を削除するにはどうすればよいですか?
このコードを使用してコピーしています:
private void copySelectedToolStripMenuItem_Click(object sender, EventArgs e)
{
if (this.dataGridView1.GetCellCount(DataGridViewElementStates.Selected) > 0)
{
try
{
Clipboard.SetDataObject(
this.dataGridView1.GetClipboardContent());
}
catch (System.Runtime.InteropServices.ExternalException)
{
// "The Clipboard could not be accessed. Please try again.";
}
}
}
選択したものだけをコピーするより良い方法はありますか? 助けてください。