BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
private void gridControl1_DragDrop(object sender, System.Windows.Forms.DragEventArgs e) { Point pt = this.gridControl1.PointToClient(Control.MousePosition); int row, col; this.gridControl1.PointToRowCol(pt, out row, out col, -1); this.gridControl1.Rows.InsertRange(row,1); }