any good recommendations for databinding. i am starting to look into WPF more and i want to fully understand the how databinding work under the hood here. also, WPF is just one example as i assume there is a common pattern with tech like asp.net mvc data binding, etc.
any good recommendations for databinding. i am starting to look into WPF more and
Share
This is a really nice introductory article on topic.
I can’t comment on the semantics of databinding within asp.net mvc; AFAIK in MVC the Controller provides the information but is not aware of the View, and the View takes that information and presents it to the user (and passes user input back to the Controller)
In many ways this is similar to an MVP or MVVM pattern often preferred by WPF developers…
EDIT: Added msdn Binding article
Hope this helps 🙂