EisenbergEffect wrote:
The cal prefix reference the Caliburn.Micro namespace. View.Model is an attached property which lets you inject views based on a bound model. So selecting the item in the list box would cause the contents of the control to change. That sets up a basic master/detail
view. But, if you want to navigate the entire screen (including moving away from the list box) when you slelect something, then you need to take a different approach. I'm not sure I understand completely what your UI looks like, so I'm having a hard time describing
the correct solution.
Hi,
As you said " if you want to navigate the entire screen (including moving away from the list box) when you slelect something, then you need to take a different approach."
How can this type of behavior be implemented?
Basically idea is that clicking on a link will load an entirely different View.
Example scenario for Silverlight:
User is on Order Screen that displays details of a specific Order (id=123) and also the list of products in the order.
Each product name is displayed as a Link.
Clicking on the product name link,loads Product Details screen.
After user is done viewing the Product Screen, may choose to come back at Order screen.
Thanks
|