I have a PropertyGrid in WPF, I can see that you can set the SelectedObject property of the PropertyGrid to an instance of an object, but I am trying to find a way to edit multiple objects at the same time, like the properties grid in Visual Studio for example. If multiple objects are selected and they share some properties the edit value in the property grid will be applied to every selected object.
So I have
ObservableCollection<SomeObject> ObjectsCollection
ObservableCollection<SomeObject> SelectedObjects
binding the SelectedObject property to the SelectedObjects collection will show each object in a row in the PropertyGrid of DevExpress, but I only want to show the properties, and if one property is edited then it will be applied to all SelectedObjects
Is that possible with DevExpress property grid? I am using the latest version.