3 types derived from DataGridViewCellEventArgs
System.Windows.Forms (3)
System\Windows\Forms\Controls\DataGridView\DataGridViewCellContextMenuStripNeededEventArgs.cs (1)
6public class DataGridViewCellContextMenuStripNeededEventArgs : DataGridViewCellEventArgs
System\Windows\Forms\Controls\DataGridView\DataGridViewCellErrorTextNeededEventArgs.cs (1)
6public class DataGridViewCellErrorTextNeededEventArgs : DataGridViewCellEventArgs
System\Windows\Forms\Controls\DataGridView\DataGridViewCellToolTipTextNeededEventArgs.cs (1)
6public class DataGridViewCellToolTipTextNeededEventArgs : DataGridViewCellEventArgs
34 instantiations of DataGridViewCellEventArgs
System.Windows.Forms (34)
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (21)
5816OnCellDoubleClick(new DataGridViewCellEventArgs(dgvcme.ColumnIndex, dgvcme.RowIndex)); 5877OnCellClick(new DataGridViewCellEventArgs(dgvcme.ColumnIndex, dgvcme.RowIndex)); 5885OnCellDoubleClick(new DataGridViewCellEventArgs(dgvcme.ColumnIndex, dgvcme.RowIndex)); 6268DataGridViewCellEventArgs dgvce = new(curColIndex, curRowIndex); 11672DataGridViewCellEventArgs dgvce = new(dataGridViewCell); 11723OnCellEnter(new DataGridViewCellEventArgs(columnIndex, rowIndex)); 11758DataGridViewCellEventArgs dgvce = new(dataGridViewCell); 11811OnCellLeave(new DataGridViewCellEventArgs(columnIndex, rowIndex)); 12842DataGridViewCellEventArgs dgvce = new(dataGridViewCell); 13022DataGridViewCellEventArgs dgvce = new(dataGridViewCell); 13047OnCellValidated(new DataGridViewCellEventArgs(columnIndex, rowIndex)); 14549DataGridViewCellEventArgs dgvce = new(columnIndex, rowIndex); 14949OnCellDoubleClick(new DataGridViewCellEventArgs(hti._col, hti._row)); 15892OnCellClick(new DataGridViewCellEventArgs(hti._col, hti._row)); 16162OnCellMouseLeave(new(_ptMouseEnteredCell.X, _ptMouseEnteredCell.Y)); 17706DataGridViewCellEventArgs dgvce = new(columnIndex, rowIndex); 18322DataGridViewCellEventArgs dgvce = new(columnIndex, rowIndex); 18769DataGridViewCellEventArgs dgvce = new(columnIndex, rowIndex); 29169dgvce = new DataGridViewCellEventArgs(_ptMouseEnteredCell.X, _ptMouseEnteredCell.Y); 29173dgvce = new DataGridViewCellEventArgs(htiToUse._col, htiToUse._row); 29196DataGridViewCellEventArgs dgvce = new(_ptMouseEnteredCell.X, _ptMouseEnteredCell.Y);
System\Windows\Forms\Controls\DataGridView\DataGridViewButtonCell.cs (2)
480RaiseCellClick(new DataGridViewCellEventArgs(ColumnIndex, rowIndex)); 485RaiseCellContentClick(new DataGridViewCellEventArgs(ColumnIndex, rowIndex));
System\Windows\Forms\Controls\DataGridView\DataGridViewButtonCell.DataGridViewButtonCellAccessibleObject.cs (2)
46dataGridView.OnCellClickInternal(new DataGridViewCellEventArgs(dataGridViewCell.ColumnIndex, dataGridViewCell.RowIndex)); 47dataGridView.OnCellContentClickInternal(new DataGridViewCellEventArgs(dataGridViewCell.ColumnIndex, dataGridViewCell.RowIndex));
System\Windows\Forms\Controls\DataGridView\DataGridViewCell.cs (1)
3936RaiseCellValueChanged(new DataGridViewCellEventArgs(ColumnIndex, rowIndex));
System\Windows\Forms\Controls\DataGridView\DataGridViewCheckBoxCell.cs (2)
831RaiseCellClick(new DataGridViewCellEventArgs(ColumnIndex, rowIndex)); 836RaiseCellContentClick(new DataGridViewCellEventArgs(ColumnIndex, rowIndex));
System\Windows\Forms\Controls\DataGridView\DataGridViewColumnHeaderCell.cs (1)
1196RaiseCellValueChanged(new DataGridViewCellEventArgs(ColumnIndex, -1));
System\Windows\Forms\Controls\DataGridView\DataGridViewImageCell.DataGridViewImageCellAccessibleObject.cs (1)
51dataGridView.OnCellContentClickInternal(new DataGridViewCellEventArgs(dataGridViewCell.ColumnIndex, dataGridViewCell.RowIndex));
System\Windows\Forms\Controls\DataGridView\DataGridViewLinkCell.cs (2)
730RaiseCellClick(new DataGridViewCellEventArgs(ColumnIndex, rowIndex)); 735RaiseCellContentClick(new DataGridViewCellEventArgs(ColumnIndex, rowIndex));
System\Windows\Forms\Controls\DataGridView\DataGridViewLinkCell.DataGridViewLinkCellAccessibleObject.cs (1)
44dataGridView.OnCellContentClickInternal(new DataGridViewCellEventArgs(dataGridViewCell.ColumnIndex, dataGridViewCell.RowIndex));
System\Windows\Forms\Controls\DataGridView\DataGridViewRowHeaderCell.cs (1)
1064RaiseCellValueChanged(new DataGridViewCellEventArgs(-1, rowIndex));
61 references to DataGridViewCellEventArgs
System.Windows.Forms (61)
System\Windows\Forms\Controls\DataGridView\DataGridView.DataConnection.cs (1)
1338internal void OnRowEnter(DataGridViewCellEventArgs e)
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (33)
6268DataGridViewCellEventArgs dgvce = new(curColIndex, curRowIndex); 11536internal void OnCellClickInternal(DataGridViewCellEventArgs e) 11541protected virtual void OnCellClick(DataGridViewCellEventArgs e) 11620internal void OnCellContentClickInternal(DataGridViewCellEventArgs e) 11625protected virtual void OnCellContentClick(DataGridViewCellEventArgs e) 11645internal void OnCellContentDoubleClickInternal(DataGridViewCellEventArgs e) 11650protected virtual void OnCellContentDoubleClick(DataGridViewCellEventArgs e) 11672DataGridViewCellEventArgs dgvce = new(dataGridViewCell); 11676protected virtual void OnCellContextMenuStripChanged(DataGridViewCellEventArgs e) 11695protected virtual void OnCellDoubleClick(DataGridViewCellEventArgs e) 11715protected virtual void OnCellEndEdit(DataGridViewCellEventArgs e) 11738protected virtual void OnCellEnter(DataGridViewCellEventArgs e) 11758DataGridViewCellEventArgs dgvce = new(dataGridViewCell); 11762protected virtual void OnCellErrorTextChanged(DataGridViewCellEventArgs e) 11826protected virtual void OnCellLeave(DataGridViewCellEventArgs e) 12605protected virtual void OnCellMouseEnter(DataGridViewCellEventArgs e) 12628protected virtual void OnCellMouseLeave(DataGridViewCellEventArgs e) 12842DataGridViewCellEventArgs dgvce = new(dataGridViewCell); 12846protected virtual void OnCellStyleChanged(DataGridViewCellEventArgs e) 13022DataGridViewCellEventArgs dgvce = new(dataGridViewCell); 13026protected virtual void OnCellToolTipTextChanged(DataGridViewCellEventArgs e) 13062protected virtual void OnCellValidated(DataGridViewCellEventArgs e) 13133internal void OnCellValueChangedInternal(DataGridViewCellEventArgs e) 13139protected virtual void OnCellValueChanged(DataGridViewCellEventArgs e) 14549DataGridViewCellEventArgs dgvce = new(columnIndex, rowIndex); 17706DataGridViewCellEventArgs dgvce = new(columnIndex, rowIndex); 17732protected virtual void OnRowEnter(DataGridViewCellEventArgs e) 18322DataGridViewCellEventArgs dgvce = new(columnIndex, rowIndex); 18339protected virtual void OnRowLeave(DataGridViewCellEventArgs e) 18769DataGridViewCellEventArgs dgvce = new(columnIndex, rowIndex); 18785protected virtual void OnRowValidated(DataGridViewCellEventArgs e) 29163DataGridViewCellEventArgs dgvce; 29196DataGridViewCellEventArgs dgvce = new(_ptMouseEnteredCell.X, _ptMouseEnteredCell.Y);
System\Windows\Forms\Controls\DataGridView\DataGridViewCell.cs (16)
890protected virtual bool ClickUnsharesRow(DataGridViewCellEventArgs e) => false; 892internal bool ClickUnsharesRowInternal(DataGridViewCellEventArgs e) => ClickUnsharesRow(e); 1025protected virtual bool ContentClickUnsharesRow(DataGridViewCellEventArgs e) => false; 1027internal bool ContentClickUnsharesRowInternal(DataGridViewCellEventArgs e) => ContentClickUnsharesRow(e); 1029protected virtual bool ContentDoubleClickUnsharesRow(DataGridViewCellEventArgs e) => false; 1031internal bool ContentDoubleClickUnsharesRowInternal(DataGridViewCellEventArgs e) => ContentDoubleClickUnsharesRow(e); 1139protected virtual bool DoubleClickUnsharesRow(DataGridViewCellEventArgs e) => false; 1141internal bool DoubleClickUnsharesRowInternal(DataGridViewCellEventArgs e) => DoubleClickUnsharesRow(e); 2812protected virtual void OnClick(DataGridViewCellEventArgs e) 2816internal void OnClickInternal(DataGridViewCellEventArgs e) => OnClick(e); 2835protected virtual void OnContentClick(DataGridViewCellEventArgs e) 2839internal void OnContentClickInternal(DataGridViewCellEventArgs e) => 2842protected virtual void OnContentDoubleClick(DataGridViewCellEventArgs e) 2846internal void OnContentDoubleClickInternal(DataGridViewCellEventArgs e) => 2849protected virtual void OnDoubleClick(DataGridViewCellEventArgs e) 2853internal void OnDoubleClickInternal(DataGridViewCellEventArgs e) =>
System\Windows\Forms\Controls\DataGridView\DataGridViewCheckBoxCell.cs (6)
429private bool CommonContentClickUnsharesRow(DataGridViewCellEventArgs e) 438protected override bool ContentClickUnsharesRow(DataGridViewCellEventArgs e) => CommonContentClickUnsharesRow(e); 440protected override bool ContentDoubleClickUnsharesRow(DataGridViewCellEventArgs e) => CommonContentClickUnsharesRow(e); 781private void OnCommonContentClick(DataGridViewCellEventArgs e) 801protected override void OnContentClick(DataGridViewCellEventArgs e) => OnCommonContentClick(e); 803protected override void OnContentDoubleClick(DataGridViewCellEventArgs e) => OnCommonContentClick(e);
System\Windows\Forms\Controls\DataGridView\DataGridViewElement.cs (4)
78protected void RaiseCellClick(DataGridViewCellEventArgs e) 83protected void RaiseCellContentClick(DataGridViewCellEventArgs e) 88protected void RaiseCellContentDoubleClick(DataGridViewCellEventArgs e) 93protected void RaiseCellValueChanged(DataGridViewCellEventArgs e)
System\Windows\Forms\Controls\DataGridView\DataGridViewEventHandlers.cs (1)
20public delegate void DataGridViewCellEventHandler(object? sender, DataGridViewCellEventArgs e);