BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
I do not want it then appears as if it had been added ,
I want to add a new row pressed as the new row is added and then appears the option to add another row
private void datagrid_CurrentCellActivated(object sender, CurrentCellActivatedEventArgs args) { bool needToMove = (datagrid.IsAddNewIndex(args.PreviousRowColumnIndex.RowIndex) && !datagrid.IsAddNewIndex(args.CurrentRowColumnIndex.RowIndex) && (Keyboard.IsKeyDown(Key.Enter) || Keyboard.IsKeyDown(Key.Tab))); Dispatcher.BeginInvoke(new Action(() => { var gridModel = this.datagrid.GetGridModel(); var columnIndex = this.datagrid.GetFirstColumnIndex(); if (needToMove && gridModel != null) { this.datagrid.MoveCurrentCell(new RowColumnIndex(gridModel.AddNewRowController.GetAddNewRowIndex(), columnIndex)); } }), DispatcherPriority.ApplicationIdle); |
Hi Luis,
Thank you for the update . Regards Ayyanar
Please let us know if you need further assistance on this.