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