WPF:从 DataGrid 复制

Posted

技术标签:

【中文标题】WPF:从 DataGrid 复制【英文标题】:WPF: Copy from a DataGrid 【发布时间】:2011-04-19 00:40:37 【问题描述】:

我想将复制功能添加到 WPF DataGrid。

    复制选项应出现在右键菜单中 它应该复制所选单元格的显示文本。 (我使用的是只读文本列。)

【问题讨论】:

【参考方案1】:

在DataGrid的ContextMenu中,可以创建MenuItem,并将MenuItem.Command的值设置为Copy。它是一个可通过标准ApplicationCommands 列表获得的命令,因此无需任何额外代码即可使其正常运行:

<DataGrid>
    <DataGrid.ContextMenu>
        <ContextMenu>
            <MenuItem Command="Copy" />
        </ContextMenu>
    </DataGrid.ContextMenu>
</DataGrid>

【讨论】:

以上是关于WPF:从 DataGrid 复制的主要内容,如果未能解决你的问题,请参考以下文章

WPF DataGrid 样式-Silverlight DataGrid?

如何确定 WPF DataGrid 是不是处于编辑模式? [复制]

WPF datagrid/gridcontrol 中选中多行,复制粘贴到excel或其他文本编辑器中

Wpf:如何从嵌套的 DataGrid 中绑定 SelectedItem

从 WPF DataGrid 中的按钮触发 RelayCommand

WPF DataGrid常用属性记录