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