BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
grid.Leave += new EventHandler(grid_Leave);
Then in the event handler, end the editing on the cell.
private void grid_Leave(object sender, EventArgs e) { this.Grid.CurrentCell.EndEdit(); }