我在RadGridView
工作,我需要复制单元格内容。
作为应用程序功能的一部分,我希望Grid SelectionUnit
始终为Row
类型。除此之外,我们还希望公开一种机制,用户可以在其中选择要复制到剪贴板的单元格值。
有办法做到这一点吗?例如,双击单元格会复制单元格值,而单击则始终选择该行。
答案 0 :(得分:1)
试试这个,
不完美,但根据您的要求,它适合。
void testGridView_CopyingCellClipboardContent(object sender, GridViewCellClipboardEventArgs e)
{
if (grdName.CurrentCell != null && grdName.CurrentCell.Column == e.Cell.Column)
{
e.Cancel = false;
}
else
e.Cancel = true;
}
将GridView名称替换为" grdName"。