Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've created a WPF application that contains some control templates which we can call 'default templates' and these templates are compiled into the application. This application also loads an external XAML file at runtime with additional control templates which can call 'custom templates'.

Everything works fine until I add a Callout control from the Expression Blend SDK to the 'custom' templates XAML that get loaded at runtime and then try to use that template. I get the following exception:

Cannot create unknown type '{http://schemas.microsoft.com/expression/2010/drawing}Callout'.

I noticed that if I put that Callout control in my 'default templates' file (the one that is compiled) and first use that default template, the then load and use the 'custom templates' it will work.

It seems to me that the referenced expression sdk assembly is not being loaded when I add my 'custom templates' to my MergedDictionaries. Any ideas here?

This is the xmlns declaration at the top of the XAML file: xmlns:ed="http://schemas.microsoft.com/expression/2010/drawing

And this is the sub where I am adding the resource dictionary at runtime:

Private Sub LoadResourceFileButton_Click(ByVal sender As System.Object, ByVal e As System.Windows.RoutedEventArgs)
    Try
        Dim path As String = "\ResourceFiles\CustomMapSymbols.xaml"
        Dim resDict As New ResourceDictionary
        resDict.Source = New Uri(path, UriKind.Relative)

        Application.Current.Resources.BeginInit()
        Application.Current.Resources.MergedDictionaries.Add(resDict)
        Application.Current.Resources.EndInit()

    Catch ex As Exception
        MessageBox.Show(ex.ToString)
    End Try
End Sub
share|improve this question
It sounds as though you're expecting the dynamically-loaded Xaml to automatically pick up its required assemblies and dynamically create those references for you. Unforunately, this doesn't work: you have to add the reference to the assembly, or load the assembly yourself. – Dan Puzey Aug 1 '11 at 16:04
Sorry I forgot to mention, the expression blend assembly (Microsoft.Expression.Drawing.dll" is referenced already in the application references, and it shows up in the bin folder - so I know it is there. Thanks for the respons though. Any other ideas? – Avery Aug 1 '11 at 16:13
Have you tried adding a Load of the required assemblies before you load your custom Xaml? If they were already loaded it wouldn't do anything, so it's good defensive code in this case. – AresAvatar Aug 1 '11 at 16:31
I have tried adding adding this code before and after adding the resource dictionary: Assembly.Load("Microsoft.Expression.Drawing") But I still get the error. Is that what you meant? – Avery Aug 1 '11 at 16:40
Yes, but only if you are sure that's the only missing assembly. Are you sure it is? There might be other dependent assemblies for this type. Also, are you checking the InnerException for your exception to see if it gives more information about why it can't create the type? – AresAvatar Aug 1 '11 at 16:49
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.