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