Do controls on the UWP platform automatically support the INotifyDataErrorInfo interface through binding?
On Silverlight and WPF, if we implement the INotifyDataErrorInfo interface, most controls will automatically glow red and display an error message when the field is in error. This is great functionality as it means that you can place errors at the model level instead of at the control level.
Is this supported in UWP? Are there any samples anywhere?
Edit: It seems as though the answer to this question might be that controls in UWP don't handle INotifyDataErrorInfo at all. So, the question now is, if the functionality is not being used, does the Microsoft team plan to implement the functionality in future? Is there an announcement from Microsoft anywhere on this?