将单元格内容复制到剪贴板RadGridView WPF

时间:2016-11-11 12:11:28

标签: c# wpf telerik radgridview

我在RadGridView工作,我需要复制单元格内容。

作为应用程序功能的一部分,我希望Grid SelectionUnit始终为Row类型。除此之外,我们还希望公开一种机制,用户可以在其中选择要复制到剪贴板的单元格值。

有办法做到这一点吗?例如,双击单元格会复制单元格值,而单击则始终选择该行。

1 个答案:

答案 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"。