Asynchronous Data Binding in Windows Presentation Foundation
Posted by: Keyvan Nayyeri,
on 17 Jul 2007 |
View original | Bookmarked: 0 time(s)
It's the week of Asynchronous Pattern!! Data binding is an important aspect of WPF that gives you great tools to bind your data to WPF controls directly.
ObjectDataProvider is a common way to bind data in WPF. By default, it uses a synchronous pattern to fetch data and bind them to controls. For large amount of data this isn't a good idea because of the reasons that you have to know after reading my article about Asynchronous Pattern in WCF. To avoid crashes...