Data Grid Best Practices in WPF

Hello friends, While working on WPF, I came to know some good Data grid tips and wanted to share you the same. Issue WPF Data Grid is not reflecting the changed Item Source. Solution If using MVVM pattern, Refresh the item source by below command. CollectionViewSource.GetDefaultView(<Your Data Grid collection name>).Refresh(); Issue How to open a… Continue reading Data Grid Best Practices in WPF