I have a radgridview grid with paging. I have a mouse double click event:
private void RgvSyncUp_MouseDoubleClick(object? sender, MouseEventArgs e)
{
var rgv = (RadGridView)sender;
var myRow = rgv.CurrentRow;
var dlg = new DlgPendingSync(myRow);
dlg.ShowDialog();
}
The problem I am having is this, that if the user double clicks a paging control it fires off the mouse double click event and the dialog mentioned in the code gets shown.
Is there a way to trap or prevent this or prevent the double click on the paging control from firing off my dialog?
Thank you,
Kevin