BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
this.sfDataGrid1.CellClick += SfDataGrid1_CellClick;
private void SfDataGrid1_CellClick(object sender, Syncfusion.WinForms.DataGrid.Events.CellClickEventArgs e)
{
if(e.MouseEventArgs.Button==MouseButtons.Right)
{
var rowColumnIndex =this.sfDataGrid1.TableControl.PointToCellRowColumnIndex(e.MouseEventArgs.Location);
}
} |