I am currently using caliburn.micro in my WP7 project and I am quite happy with it. My application is very data-heavy, so I took a look at Agfx (http://agfx.codeplex.com), seems it can save me a lot of time on data requesting and caching.

But the problem here is that agfx also provide a base view model, while I've already had one which inherits Screen of caliburn.micro. Of course I can encapsulate a new view model base which inherits ModelItemBase from agfx, and implements IScreen. But I kinda don't like this, is there any better soultion or best practice you can share with me about how to integrate the 2 great frameworks?

Best Regards,

-Peng

link|improve this question

75% accept rate
feedback

1 Answer

up vote 3 down vote accepted

I am actually using AgFx with another UI framework which has its own ViewModelBase. My own understanding is, the ModelItemBase that's provided by AgFx is a model base rather than a viewmodel base. It basically takes care of the data.

My viewmodel which inherits from my ViewModelBase, does a lot more stuff like Tombstoning, application bar bindings, etc. It's designed for displaying the data on the view.

I think it fits in mvvm and works out really well. Hope this helps. :)

link|improve this answer
I got what you mean, but ModelItemBase inherits from INotifyPropertyChange, does that mean it is designed for VM? and doing so might blur the boundary of domain models and VMs, right? – Peng Wang Oct 18 '11 at 15:20
Nope, INotifyPropertyChanged is not UI specific, what if a property his changed in the model? In this case you need to have it on your model to notify your vm about this change. – Xin Oct 18 '11 at 21:29
Thanks for clarification, and I will try it out. – Peng Wang Oct 19 '11 at 0:52
Xin, are you using it with MVVM Light? If so, could you give a small overview on how you combine it with Agfx? – Depechie Dec 12 '11 at 8:58
@Depechie Sorry I am using Jeremy Likness' UltraLight Mvvm framework wintellect.com/CS/blogs/jlikness/archive/2011/02/25/… not sure about MvvmLight though. :( – Xin Dec 12 '11 at 9:19
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.