BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
private void Button_Click(object sender, RoutedEventArgs e)
{
var currentCell = gridA.SelectionController.CurrentCellManager.CurrentCell;
var record = this.gridA.GetRecordAtRowIndex(currentCell.RowIndex);
this.gridA.SelectedItem = record;
gridA.GridCopyPaste.Copy();
// need to specific the index to paste the record in grid
this.gridB.SelectionController.MoveCurrentCell(new Syncfusion.UI.Xaml.ScrollAxis.RowColumnIndex(currentCell.RowIndex,currentCell.ColumnIndex),true);
gridB.GridCopyPaste.Paste();
}
|
private void Button_Click_1(object sender, RoutedEventArgs e)
{
gridB.RowSelectionBrush = new SolidColorBrush(Colors.Bisque);
gridB.SelectionForegroundBrush = new SolidColorBrush(Colors.Red);
}
|