DataGridViewCellMouseEventArgs Class
.NET Framework 3.5
Provides data for mouse events raised by a DataGridView whenever the mouse is moved within a DataGridViewCell.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
The DataGridViewCellMouseEventArgs class provides data for the following DataGridView events:
The following code example illustrates the use of this type.
private void dataGridView1_ColumnHeaderMouseClick( object sender, DataGridViewCellMouseEventArgs e) { DataGridViewColumn newColumn = dataGridView1.Columns[e.ColumnIndex]; DataGridViewColumn oldColumn = dataGridView1.SortedColumn; ListSortDirection direction; // If oldColumn is null, then the DataGridView is not sorted. if (oldColumn != null) { // Sort the same column again, reversing the SortOrder. if (oldColumn == newColumn && dataGridView1.SortOrder == SortOrder.Ascending) { direction = ListSortDirection.Descending; } else { // Sort a new column and remove the old SortGlyph. direction = ListSortDirection.Ascending; oldColumn.HeaderCell.SortGlyphDirection = SortOrder.None; } } else { direction = ListSortDirection.Ascending; } // Sort the selected column. dataGridView1.Sort(newColumn, direction); newColumn.HeaderCell.SortGlyphDirection = direction == ListSortDirection.Ascending ? SortOrder.Ascending : SortOrder.Descending; } private void dataGridView1_DataBindingComplete(object sender, DataGridViewBindingCompleteEventArgs e) { // Put each of the columns into programmatic sort mode. foreach (DataGridViewColumn column in dataGridView1.Columns) { column.SortMode = DataGridViewColumnSortMode.Programmatic; } }
System.Object
System.EventArgs
System.Windows.Forms.MouseEventArgs
System.Windows.Forms.DataGridViewCellMouseEventArgs
System.EventArgs
System.Windows.Forms.MouseEventArgs
System.Windows.Forms.DataGridViewCellMouseEventArgs
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.