Hi All,
I have been learning Prism and Silverlight and am now trying to create a simple application but have run into a snag...
What I have is a Shell with 2 ContentControls, "MenuRegion" and "ContentRegion". The way I want it to work is that a user will click on an item in the "MenuRegion" and then the approriate view will be displayed in the ContentRegion, replacing whichever View was previously there (All views are in their own projects, as if being worked on by different people). All of the views to display in the content region will be different.
I do not know how to achieve this using the Prism model (I can do this if I want, but there is going to be lots of code in the View.cs and would like to do this the correct way). All samples I have found out there use a Tab control and load all Modules at once, which isnt what I'm trying to achieve. Is there a particular pattern I should learn or any examples that you know of that could point me in the right direction?