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