In my Silverlight Business application I have 3 projects – the two standard (AppName and AppName.Web) and I have a Silverlight Class Library named ModelClasses.
AppName (App.xaml is here)
AppName.Web
ModelClasses
I would like to be able to bind to the values in ModelClasses in the xaml files in AppName, is it even possible? In App.xaml I have tried xmlns:mc="clr-namespace:ModelClasses" but it won’t work.
I am definitely missing something here so any help would be greatly appreciated!
You should also provide a reference to the assembly,
More on Silverlight namespace mapping here.