Hello,
I'm using PropertyGrid (ActiproSoftware.PropertyGrid.Wpf.dll, Ver 11.2.551.0).
The items are populated by setting SelectedObjects.
On a custom control I have the properties Min and Max. The properties are dependent on each other. (Min, Max is just an example. We have many such properties dependent on each other.) Setting one property can put the other in error condition. e.g. If Min=0, and Max=10 is OK condition. Now if user sets Min=20, then Max is in error condition.
I'm using DataErrorValidationRule by implementing the IDataErrorInfo interface on my objects. This works fine for the edited properties. I can get the Red border to appear on the edited property.
Question: If user edits Min property, then how can I show a red border around Max property?
Thanks in advance for your help.
-Vinay