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:
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
Post a Comment