As it mentioned in "Build your own CAB" blog post series when you are rolling on Passive View design pattern it's not possible to take advantages of Data Binding. It is not so clear for me as I want it be. So, could any one of you guys show any samples where Data Binding is possible in Supervising Controller pattern and analogue of this sample in Passive View? Let say it is .NET 4 WinForms app.
Thanks in advance!
Here another answer to downvote :)
MVC is all about decoupling, When updating through the View the Controller updates the Model
Databinding normally tightly couples this, updating through the View will update the binded Model
So if you want to follow the MVC pattern to the letter, you can't use normal databinding. Maybe there is some hybrid approach to do this but it will probably add more complexity then just do databinding OR MVC and will be only usable on an academic level then instead for real world programming