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