我正在使用 WPFDataGrid
来显示名称-值对。SelectionUnit
设置为是FullRow
因为它看起来不错,但是,当用户选择一行并按Ctrl+时C,他真的想要复制值文本,而不是默认行为,即名称和值的串联。在寻找解决方案时,我发现了CopyingRowClipboardContent
事件,但MSDN 页面没有关于如何使用它的信息。还是我应该抓住PreviewKeyDown
自己?
问问题
3917 次
2 回答
1
您可以CopyingRowClipboardContent
使用DataGridRowClipboardEventArgs
.
反编译的源代码
public class DataGridRowClipboardEventArgs
{
/// <summary>
/// This list should be used to modify, add or remove a cell
/// content before it gets stored into the clipboard.
/// </summary>
public List<DataGridClipboardCellContent> ClipboardRowContent
{
...
因此,例如,如果您有两列并且只想要第一列,则可以像这样删除第二项:
private void grid_CopyingRowClipboardContent(
object sender, DataGridRowClipboardEventArgs e)
{
e.ClipboardRowContent.RemoveAt(1);
}
于 2012-06-15T07:06:40.583 回答
0
也许这就是你要找的
ClipboardCopyMode = DataGridClipboardCopyMode.ExcludeHeader;
于 2012-06-14T07:52:53.063 回答