27 references to DataGridViewCellMouseEventHandler
System.Windows.Forms (27)
winforms\Managed\System\WinForms\DataGridView.cs (9)
5561public event DataGridViewCellMouseEventHandler CellMouseClick 5578public event DataGridViewCellMouseEventHandler CellMouseDoubleClick 5595public event DataGridViewCellMouseEventHandler CellMouseDown 5646public event DataGridViewCellMouseEventHandler CellMouseMove 5663public event DataGridViewCellMouseEventHandler CellMouseUp 6006public event DataGridViewCellMouseEventHandler ColumnHeaderMouseClick 6023public event DataGridViewCellMouseEventHandler ColumnHeaderMouseDoubleClick 6495public event DataGridViewCellMouseEventHandler RowHeaderMouseClick 6512public event DataGridViewCellMouseEventHandler RowHeaderMouseDoubleClick
winforms\Managed\System\WinForms\DataGridViewMethods.cs (18)
12215DataGridViewCellMouseEventHandler eh = this.Events[EVENT_DATAGRIDVIEWCELLMOUSECLICK] as DataGridViewCellMouseEventHandler; 12247DataGridViewCellMouseEventHandler eh = this.Events[EVENT_DATAGRIDVIEWCELLMOUSEDOUBLECLICK] as DataGridViewCellMouseEventHandler; 12322DataGridViewCellMouseEventHandler eh = this.Events[EVENT_DATAGRIDVIEWCELLMOUSEDOWN] as DataGridViewCellMouseEventHandler; 13008DataGridViewCellMouseEventHandler eh = this.Events[EVENT_DATAGRIDVIEWCELLMOUSEMOVE] as DataGridViewCellMouseEventHandler; 13076DataGridViewCellMouseEventHandler eh = this.Events[EVENT_DATAGRIDVIEWCELLMOUSEUP] as DataGridViewCellMouseEventHandler; 14137DataGridViewCellMouseEventHandler eh = this.Events[EVENT_DATAGRIDVIEWCOLUMNHEADERMOUSECLICK] as DataGridViewCellMouseEventHandler; 14147DataGridViewCellMouseEventHandler eh = this.Events[EVENT_DATAGRIDVIEWCOLUMNHEADERMOUSEDOUBLECLICK] as DataGridViewCellMouseEventHandler; 18391DataGridViewCellMouseEventHandler eh = this.Events[EVENT_DATAGRIDVIEWROWHEADERMOUSECLICK] as DataGridViewCellMouseEventHandler; 18401DataGridViewCellMouseEventHandler eh = this.Events[EVENT_DATAGRIDVIEWROWHEADERMOUSEDOUBLECLICK] as DataGridViewCellMouseEventHandler;