Reputation: 20066
How do you go about dividing the views into smaller views. Let's say I have a Customer
object and each Customer
can have Order
s. Should I create a single view CustomerOrderView
or should I create 3 views CustomerOrderView
, CustomerView
, and OrderView
?
Upvotes: 0
Views: 214
Reputation: 292415
Create a view (or several views) for each ViewModel. In the CustomerView
, you can then use OrderView
s to display the orders in a ItemsControl
Upvotes: 1