I am working on a WPF application. And we have a number of "forms" within the application that have fields that require entry. I have read all about ValidationRules and I think I am grasping the concept well enough, but what I would like to do is build a CustomControl, or UserControl not sure which is more appropriate in this case, that has the ValidationRules baked right into it.
The end result of this being instead of saying
<ComboBox ItemsSource={Binding Items} />
I would say
<RequiredComboBox ItemsSource={Binding Items} />
I am just still a little to new to WPF to see where the right extension point to do this is.