我试图在复制时在 GridView 中获取选定的单元格及其内容。在复制单元格的内容时,我得到单元格项目源而不是单元格内容。
复制网格的事件
private void RadGrid_CopyingCellClipboardContent(object sender, GridViewCellClipboardEventArgs e)
{
var textBlock = e.Cell as TextBlock;
if (textBlock != null)
{
e.Value = textBlock.Text;
}
}
我总是将文本块设为空。复制时如何获取单元格内容。