3 types derived from DataGridViewCellEventArgs
System.Windows.Forms (3)
winforms\Managed\System\WinForms\DataGridViewCellContextMenuStripNeededEventArgs.cs (1)
13public class DataGridViewCellContextMenuStripNeededEventArgs : DataGridViewCellEventArgs
winforms\Managed\System\WinForms\DataGridViewCellErrorTextNeededEventArgs.cs (1)
13public class DataGridViewCellErrorTextNeededEventArgs : DataGridViewCellEventArgs
winforms\Managed\System\WinForms\DataGridViewCellToolTipTextNeededEventArgs.cs (1)
13public class DataGridViewCellToolTipTextNeededEventArgs : DataGridViewCellEventArgs
34 instantiations of DataGridViewCellEventArgs
System.Windows.Forms (34)
winforms\Managed\System\WinForms\DataGridViewButtonCell.cs (4)
532RaiseCellClick(new DataGridViewCellEventArgs(this.ColumnIndex, rowIndex)); 537RaiseCellContentClick(new DataGridViewCellEventArgs(this.ColumnIndex, rowIndex)); 1133dataGridView.OnCellClickInternal(new DataGridViewCellEventArgs(dataGridViewCell.ColumnIndex, dataGridViewCell.RowIndex)); 1134dataGridView.OnCellContentClickInternal(new DataGridViewCellEventArgs(dataGridViewCell.ColumnIndex, dataGridViewCell.RowIndex));
winforms\Managed\System\WinForms\DataGridViewCell.cs (1)
4687RaiseCellValueChanged(new DataGridViewCellEventArgs(this.ColumnIndex, rowIndex));
winforms\Managed\System\WinForms\DataGridViewCheckBoxCell.cs (2)
963RaiseCellClick(new DataGridViewCellEventArgs(this.ColumnIndex, rowIndex)); 968RaiseCellContentClick(new DataGridViewCellEventArgs(this.ColumnIndex, rowIndex));
winforms\Managed\System\WinForms\DataGridViewColumnHeaderCell.cs (1)
1211RaiseCellValueChanged(new DataGridViewCellEventArgs(this.ColumnIndex, -1));
winforms\Managed\System\WinForms\DataGridViewImageCell.cs (1)
1051dataGridView.OnCellContentClickInternal(new DataGridViewCellEventArgs(dataGridViewCell.ColumnIndex, dataGridViewCell.RowIndex));
winforms\Managed\System\WinForms\DataGridViewLinkCell.cs (3)
836RaiseCellClick(new DataGridViewCellEventArgs(this.ColumnIndex, rowIndex)); 841RaiseCellContentClick(new DataGridViewCellEventArgs(this.ColumnIndex, rowIndex)); 1204dataGridView.OnCellContentClickInternal(new DataGridViewCellEventArgs(dataGridViewCell.ColumnIndex, dataGridViewCell.RowIndex));
winforms\Managed\System\WinForms\DataGridViewMethods.cs (21)
5870OnCellDoubleClick(new DataGridViewCellEventArgs(dgvcme.ColumnIndex, dgvcme.RowIndex)); 5922OnCellClick(new DataGridViewCellEventArgs(dgvcme.ColumnIndex, dgvcme.RowIndex)); 5931OnCellDoubleClick(new DataGridViewCellEventArgs(dgvcme.ColumnIndex, dgvcme.RowIndex)); 6299DataGridViewCellEventArgs dgvce = new DataGridViewCellEventArgs(curColIndex, curRowIndex); 11912DataGridViewCellEventArgs dgvce = new DataGridViewCellEventArgs(dataGridViewCell); 12013OnCellEnter(new DataGridViewCellEventArgs(columnIndex, rowIndex)); 12061DataGridViewCellEventArgs dgvce = new DataGridViewCellEventArgs(dataGridViewCell); 12146OnCellLeave(new DataGridViewCellEventArgs(columnIndex, rowIndex)); 13206DataGridViewCellEventArgs dgvce = new DataGridViewCellEventArgs(dataGridViewCell); 13392DataGridViewCellEventArgs dgvce = new DataGridViewCellEventArgs(dataGridViewCell); 13443OnCellValidated(new DataGridViewCellEventArgs(columnIndex, rowIndex)); 15012DataGridViewCellEventArgs dgvce = new DataGridViewCellEventArgs(columnIndex, rowIndex); 15448OnCellDoubleClick(new DataGridViewCellEventArgs(hti.col, hti.row)); 16348OnCellClick(new DataGridViewCellEventArgs(hti.col, hti.row)); 16588DataGridViewCellEventArgs dgvce = new DataGridViewCellEventArgs(this.ptMouseEnteredCell.X, this.ptMouseEnteredCell.Y); 18168DataGridViewCellEventArgs dgvce = new DataGridViewCellEventArgs(columnIndex, rowIndex); 18825DataGridViewCellEventArgs dgvce = new DataGridViewCellEventArgs(columnIndex, rowIndex); 19308DataGridViewCellEventArgs dgvce = new DataGridViewCellEventArgs(columnIndex, rowIndex); 29215dgvce = new DataGridViewCellEventArgs(this.ptMouseEnteredCell.X, this.ptMouseEnteredCell.Y); 29218dgvce = new DataGridViewCellEventArgs(htiToUse.col, htiToUse.row); 29239DataGridViewCellEventArgs dgvce = new DataGridViewCellEventArgs(this.ptMouseEnteredCell.X, this.ptMouseEnteredCell.Y);
winforms\Managed\System\WinForms\DataGridViewRowHeaderCell.cs (1)
1157RaiseCellValueChanged(new DataGridViewCellEventArgs(-1, rowIndex));
63 references to DataGridViewCellEventArgs
System.Windows.Forms (62)
winforms\Managed\System\WinForms\DataGridViewCell.cs (16)
1132protected virtual bool ClickUnsharesRow(DataGridViewCellEventArgs e) 1137internal bool ClickUnsharesRowInternal(DataGridViewCellEventArgs e) 1270protected virtual bool ContentClickUnsharesRow(DataGridViewCellEventArgs e) 1275internal bool ContentClickUnsharesRowInternal(DataGridViewCellEventArgs e) 1284protected virtual bool ContentDoubleClickUnsharesRow(DataGridViewCellEventArgs e) 1289internal bool ContentDoubleClickUnsharesRowInternal(DataGridViewCellEventArgs e) 1398protected virtual bool DoubleClickUnsharesRow(DataGridViewCellEventArgs e) 1403internal bool DoubleClickUnsharesRowInternal(DataGridViewCellEventArgs e) 3220protected virtual void OnClick(DataGridViewCellEventArgs e) 3224internal void OnClickInternal(DataGridViewCellEventArgs e) 3247protected virtual void OnContentClick(DataGridViewCellEventArgs e) 3251internal void OnContentClickInternal(DataGridViewCellEventArgs e) 3257protected virtual void OnContentDoubleClick(DataGridViewCellEventArgs e) 3261internal void OnContentDoubleClickInternal(DataGridViewCellEventArgs e) 3267protected virtual void OnDoubleClick(DataGridViewCellEventArgs e) 3271internal void OnDoubleClickInternal(DataGridViewCellEventArgs e)
winforms\Managed\System\WinForms\DataGridViewCheckBoxCell.cs (6)
506private bool CommonContentClickUnsharesRow(DataGridViewCellEventArgs e) 515protected override bool ContentClickUnsharesRow(DataGridViewCellEventArgs e) 521protected override bool ContentDoubleClickUnsharesRow(DataGridViewCellEventArgs e) 907private void OnCommonContentClick(DataGridViewCellEventArgs e) 926protected override void OnContentClick(DataGridViewCellEventArgs e) 932protected override void OnContentDoubleClick(DataGridViewCellEventArgs e)
winforms\Managed\System\WinForms\DataGridViewDataConnection.cs (1)
1437internal void OnRowEnter(DataGridViewCellEventArgs e)
winforms\Managed\System\WinForms\DataGridViewElement.cs (4)
104protected void RaiseCellClick(DataGridViewCellEventArgs e) 114protected void RaiseCellContentClick(DataGridViewCellEventArgs e) 124protected void RaiseCellContentDoubleClick(DataGridViewCellEventArgs e) 134protected void RaiseCellValueChanged(DataGridViewCellEventArgs e)
winforms\Managed\System\WinForms\DataGridViewEventHandlers.cs (1)
42public delegate void DataGridViewCellEventHandler(object sender, DataGridViewCellEventArgs e);
winforms\Managed\System\WinForms\DataGridViewMethods.cs (34)
6299DataGridViewCellEventArgs dgvce = new DataGridViewCellEventArgs(curColIndex, curRowIndex); 11752internal void OnCellClickInternal(DataGridViewCellEventArgs e) 11759protected virtual void OnCellClick(DataGridViewCellEventArgs e) 11838internal void OnCellContentClickInternal(DataGridViewCellEventArgs e) 11845protected virtual void OnCellContentClick(DataGridViewCellEventArgs e) 11874internal void OnCellContentDoubleClickInternal(DataGridViewCellEventArgs e) 11881protected virtual void OnCellContentDoubleClick(DataGridViewCellEventArgs e) 11912DataGridViewCellEventArgs dgvce = new DataGridViewCellEventArgs(dataGridViewCell); 11918protected virtual void OnCellContextMenuStripChanged(DataGridViewCellEventArgs e) 11963protected virtual void OnCellDoubleClick(DataGridViewCellEventArgs e) 11994protected virtual void OnCellEndEdit(DataGridViewCellEventArgs e) 12030protected virtual void OnCellEnter(DataGridViewCellEventArgs e) 12061DataGridViewCellEventArgs dgvce = new DataGridViewCellEventArgs(dataGridViewCell); 12067protected virtual void OnCellErrorTextChanged(DataGridViewCellEventArgs e) 12163protected virtual void OnCellLeave(DataGridViewCellEventArgs e) 12918protected virtual void OnCellMouseEnter(DataGridViewCellEventArgs e) 12952protected virtual void OnCellMouseLeave(DataGridViewCellEventArgs e) 13206DataGridViewCellEventArgs dgvce = new DataGridViewCellEventArgs(dataGridViewCell); 13212protected virtual void OnCellStyleChanged(DataGridViewCellEventArgs e) 13392DataGridViewCellEventArgs dgvce = new DataGridViewCellEventArgs(dataGridViewCell); 13398protected virtual void OnCellToolTipTextChanged(DataGridViewCellEventArgs e) 13460protected virtual void OnCellValidated(DataGridViewCellEventArgs e) 13543internal void OnCellValueChangedInternal(DataGridViewCellEventArgs e) 13551protected virtual void OnCellValueChanged(DataGridViewCellEventArgs e) 15012DataGridViewCellEventArgs dgvce = new DataGridViewCellEventArgs(columnIndex, rowIndex); 16588DataGridViewCellEventArgs dgvce = new DataGridViewCellEventArgs(this.ptMouseEnteredCell.X, this.ptMouseEnteredCell.Y); 18168DataGridViewCellEventArgs dgvce = new DataGridViewCellEventArgs(columnIndex, rowIndex); 18195protected virtual void OnRowEnter(DataGridViewCellEventArgs e) 18825DataGridViewCellEventArgs dgvce = new DataGridViewCellEventArgs(columnIndex, rowIndex); 18843protected virtual void OnRowLeave(DataGridViewCellEventArgs e) 19308DataGridViewCellEventArgs dgvce = new DataGridViewCellEventArgs(columnIndex, rowIndex); 19325protected virtual void OnRowValidated(DataGridViewCellEventArgs e) 29209DataGridViewCellEventArgs dgvce; 29239DataGridViewCellEventArgs dgvce = new DataGridViewCellEventArgs(this.ptMouseEnteredCell.X, this.ptMouseEnteredCell.Y);
System.WorkflowServices (1)
System\Workflow\Activities\Design\ServiceOperationDetailViewControl.cs (1)
410void parametersGridCellEndEdit(object sender, DataGridViewCellEventArgs e)