tags:

views:

47

answers:

1

How do you go about dividing the views into smaller views. Let's say I have Customer object and each Customer can have Orders. Should I create a single view "CustomerOrderView" or should I create 3 views "CustomerOrderView", "CustomerView", "OrderView"?

+1  A: 

Create a view (or several views) for each ViewModel. In the CustomerView, you can then use OrderViews to display the orders in a ItemsControl

Thomas Levesque
I guess the answer is that if we divide the Views into smaller views then we can reuse them later. Thanks!
azamsharp