WPF:从 DataGrid 复制
我想向 WPF DataGrid 添加复制功能。
- “复制”选项应出现在右键单击菜单中。
- 它应复制所选单元格的显示文本。 (我使用的是只读文本列。)
I would like to add Copy functionality to a WPF DataGrid.
- The Copy option should appear in a right-click menu
- It should copy the display text for the selected cell. (I am using read-only text columns.)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 DataGrid 的 ContextMenu 中,您可以创建一个 MenuItem 并设置
MenuItem.Command
值到复制
。它是通过标准ApplicationCommands
列表,因此不需要任何额外的代码即可使其正常工作:
In the DataGrid's
ContextMenu
, you can create aMenuItem
and set theMenuItem.Command
value toCopy
. It's a Command available through the standardApplicationCommands
list, so there won't be any additional code required to have it functional: