2 instantiations of DataGridRowClipboardEventArgs
PresentationFramework (2)
System\Windows\Controls\DataGrid.cs (2)
8296
DataGridRowClipboardEventArgs preparingRowClipboardContentEventArgs = new
DataGridRowClipboardEventArgs
(null, minColumnDisplayIndex, maxColumnDisplayIndex, true /*IsColumnHeadersRow*/);
8313
DataGridRowClipboardEventArgs preparingRowClipboardContentEventArgs = new
DataGridRowClipboardEventArgs
(row, minColumnDisplayIndex, maxColumnDisplayIndex, false /*IsColumnHeadersRow*/, i);
4 references to DataGridRowClipboardEventArgs
PresentationFramework (4)
System\Windows\Controls\DataGrid.cs (4)
8296
DataGridRowClipboardEventArgs
preparingRowClipboardContentEventArgs = new DataGridRowClipboardEventArgs(null, minColumnDisplayIndex, maxColumnDisplayIndex, true /*IsColumnHeadersRow*/);
8313
DataGridRowClipboardEventArgs
preparingRowClipboardContentEventArgs = new DataGridRowClipboardEventArgs(row, minColumnDisplayIndex, maxColumnDisplayIndex, false /*IsColumnHeadersRow*/, i);
8350
protected virtual void OnCopyingRowClipboardContent(
DataGridRowClipboardEventArgs
args)
8408
public event EventHandler<
DataGridRowClipboardEventArgs
> CopyingRowClipboardContent;