We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

How to make context menu show on column/row headers


Hi Haneef

How can i make a context menu to drop only if i clicked on row headers or column headers.

Regards,
Ubaid Tariq

1 Reply

AD Administrator Syncfusion Team March 7, 2007 07:10 PM UTC

Hi Ubaid,

One way you can do this by handling the MouseDown event of the grid and show the context menu when the header is clicked. Please refer to the attached sample for implementation and let me know if this helps.

[C#]
private void gridControl1_MouseDown(object sender, MouseEventArgs e) // Enters on Mouse Click Down
{
if (e.Button == MouseButtons.Right)
{
GridControl grid = sender as GridControl;
int row, col;
grid.PointToRowCol(e.Location, out row, out col);
if (row != -1 && col != -1)
{
if( grid.Model[row,col].CellType == "Header")
this.contextMenu1.Show(this.gridControl1, e.Location);
}
}
}

Sample : http://websamples.syncfusion.com/samples/Grid.Windows/F57308/main.htm


Best Regards,
Haneef

Loader.
Live Chat Icon For mobile
Up arrow icon