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.

link|improve this question

Is there MainPageView in the same assembly that Bootstrapper? – Vladimir Dorokhov Aug 26 '11 at 7:16
feedback

1 Answer

up vote 4 down vote accepted

In C.M, there is additional logic for finding Views concerning words like Page, etc. (see here).

So you can either change your views to match the rules in C.M, remove word Page from your view models, or you can enforce custom simple view location with something like that:

ViewLocator.LocateTypeForModelType = (modelType, displayLocation, context) =>
{
    var viewTypeName = modelType.FullName.Substring(
        0,
        modelType.FullName.IndexOf("`") < 0
            ? modelType.FullName.Length
            : modelType.FullName.IndexOf("`")
        );

    viewTypeName = viewTypeName.Replace("Model", string.Empty);

    if (context != null)
    {
        viewTypeName = Regex.Replace(viewTypeName, "View$", string.Empty);
        viewTypeName += "." + context;
    }

    var viewType = (from assembly in AssemblySource.Instance
                    from type in assembly.GetExportedTypes()
                    where type.FullName == viewTypeName
                    select type).FirstOrDefault();

    return viewType;
};
link|improve this answer
Awesome, totaly solved my problem. I couldn't find anything in the documentation about it... I guess I need more instincts to devour the source :) Big thanks! – Tom Ceuppens Aug 26 '11 at 7:51
It seems that only renaming your view to Gymsport.Client.Pages.Main.MainPage should work as well. – gius Aug 26 '11 at 13:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.