Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to implement INotifyDataErrorInfo in WPF 4.5? [closed]

I realized that appears this interface in .NET Framework 4.5

I was looking first for about how to implemented in Silverlight (I can imagine that it's implemented in the same way), but I can't find a compact demo of this new interface. Is it possible to show how can I use it?

I really want to find a small demo to understand it

like image 984
Darf Zon Avatar asked Mar 30 '12 20:03

Darf Zon


1 Answers

Beside the very detailed description on MSDN about the Silverlight version of INotifyDataErrorInfo

There are already some blog posts with samples how to use/implement it in WPF 4.5:

  • WPF 4.5 – Asynchronous validation (original link no longer working) Wayback Link
  • WPF 4.5 – Part 1 : Asynchronous data validation (the author has a nice series about the new fetaures in WPF 4.5)
like image 66
nemesv Avatar answered Sep 18 '22 12:09

nemesv