I'm trying to make a composition UI for a small website.
My building tree looks like this:
- Shell (Conductor.Collection.AllActive)
- Contains multiple IPod's (you can view them as small widgets)
- 1 Pod is a PagePod.
This last one is of sort IPodConductor, so a combination of a Screen ( the pagepod ) containing IPage (like MainPage, ContactPage .. )
My whole construction can find all my viewmodels and views following Caliburns convention, but not my MainPage.
The error is as following: "Cannot find view for Gymsport.Client.Pages.Main.MainPageViewModel"
My structure to the view is as following: Gymsport.Client.Pages.Main.MainPageView
Following the convention, caliburn should be able to locate my view... but it doens't.
Anybody any tips on to figure out or pointers for debugging this error.
Thanks in advance.