How to change the cell value of selected cells in WPF DataGrid (SfDataGrid)?
You can select multiple cells by setting SelectionUnit as Cell or Any and SelectionMode as Multiple or Extended in WPF DataGrid (SfDataGrid). You can edit and change the value of all the selected cells when editing completes by handling SfDataGrid.CurrentCellEndEdit event.
You have to set value for all the selected cells in CurrentCellEndEdit event as shown in the below code snippet. If the current cell property type is not matched with selected cells type, then you have to convert the value to associated type of respective cells.
C#
sfdatagrid.CurrentCellEndEdit+=sfdatagrid_CurrentCellEndEdit;
void sfdatagrid_CurrentCellEndEdit(object sender, CurrentCellEndEditEventArgs args)
{
var selectedcells = this.sfdatagrid.GetSelectedCells();
var propertyAccessProvider= this.sfdatagrid.View.GetPropertyAccessProvider();
var itemProperties = this.sfdatagrid.View.GetItemProperties();
var newValue = propertyAccessProvider.GetValue(this.sfdatagrid.CurrentItem, this.sfdatagrid.CurrentColumn.MappingName);
if (selectedcells.Count > 0)
{
try
{
selectedcells.ForEach(item =>
{
var cellInfo = item as GridCellInfo;
var propInfo = itemProperties.Find(cellInfo.Column.MappingName, true);
if (propInfo != null && propInfo.PropertyType == newValue.GetType())
propertyAccessProvider.SetValue(cellInfo.RowData, cellInfo.Column.MappingName, newValue);
else if (propInfo != null)
{
var value = Convert.ChangeType(newValue, propInfo.PropertyType);
propertyAccessProvider.SetValue(cellInfo.RowData, cellInfo.Column.MappingName, value);
}
});
}
catch (Exception e)
{
Debug.WriteLine(e.Message);
}
}
}


Conclusion
I hope you enjoyed learning about how to change the cell value of selected cells in WPF DataGrid (SfDataGrid).
You can refer to our WPF DataGrid feature tour page to know about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications. You can also explore our WPF DataGrid example to understand how to create and manipulate data.
For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.
If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!