How Column Accept Unique Value Per Row Using WPF DataGrid?
You can make a specific column accept unique value per row using SfDataGrid.CurrentCellValidating event in WPF DataGrid (SfDataGrid).
<syncfusion:SfDataGrid x:Name="dataGrid" ItemsSource="{Binding Orders}" AutoGenerateColumns="False" AllowEditing="True" CurrentCellValidating="dataGrid_CurrentCellValidating" > <syncfusion:SfDataGrid.Columns> <syncfusion:GridTextColumn MappingName="OrderID" HeaderText="Order ID" /> <syncfusion:GridTextColumn MappingName="CustomerID" HeaderText="Customer ID" /> <syncfusion:GridTextColumn MappingName="Country"/> <syncfusion:GridTextColumn MappingName="CustomerName" HeaderText="Customer Name" /> <syncfusion:GridTextColumn MappingName="ShipCity" HeaderText="Ship City" /> </syncfusion:SfDataGrid.Columns> </syncfusion:SfDataGrid>
private void dataGrid_CurrentCellValidating(object sender, Syncfusion.UI.Xaml.Grid.CurrentCellValidatingEventArgs e) { if (e.Column.MappingName == "OrderID") { for (int i = 0; i < dataGrid.View.Records.Count; i++) { if ((this.dataGrid.View.Records[i].Data as OrderInfo).OrderID.ToString().Equals((e.NewValue.ToString())) && (e.NewValue.ToString() != e.OldValue.ToString())) { e.IsValid = false; e.ErrorMessage = "Invalid Value"; break; } } } }
View WPF DataGrid Unique Value Demo in GitHub.
Conclusion
I hope you enjoyed learning how column accept unique value per row using WPF DataGrid.
You can refer to our WPF Grid 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 Grid 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!