model view controller - ObserverableCollection UI pattern in WinForms -


in many ways think of using mvc pattern in winforms, i'd know if it's possible bind controls objects using observablecollection type? if it's purely wpf, other alternatives out there?

to put perspective, we're building system has business logic i'd control ui with, instead of making customizations each requirement or workflow on ui itself. have around few hundred potential forms i'd start designing pattern in mind.

we're building web interfaces of processes, in reality they're watered-down versions of forms. if can use same framework can bind on web form awesome.

thanks

what observablecollection implements inotifypropertychange , each control in wpf has possibility listen it's bound data raise event inotifypropertychange. can read more here why can't use observablecollection way want in winforms.

another way use model-view-presenter pattern:

enter image description here

this pattern can used in asp.net.

there's msdn magazine article on: "better web forms mvp pattern" think should into. , here introduction how use mvp-pattern in asp.net.


Comments

Popular posts from this blog

c# - SharpSVN - How to get the previous revision? -

c++ - Is it possible to compile a VST on linux? -

url - Querystring manipulation of email Address in PHP -