Live Chat Icon For mobile
Live Chat Icon

How can I catch a double-click into a column header cell

Platform: WinForms| Category: Datagrid

You can use the DataGrid’s double-click event and its HitTest method to catch a double click on a header.

	private void dataGrid1_DoubleClick(object sender, System.EventArgs e)
	{
		System.Drawing.Point pt = dataGrid1.PointToClient(Cursor.Position);

		DataGrid.HitTestInfo hti = dataGrid1.HitTest(pt);

		if(hti.Type == DataGrid.HitTestType.ColumnHeader) 
		{
			MessageBox.Show('double clicked clicked column header ' + hti.Column.ToString());
		}
	}

Share with

Related FAQs

Couldn't find the FAQs you're looking for?

Please submit your question and answer.