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 OrderView
s to display the orders in a ItemsControl
Thomas Levesque
2009-07-08 19:19:17
I guess the answer is that if we divide the Views into smaller views then we can reuse them later. Thanks!
azamsharp
2009-07-08 19:26:26