DaneTritle asked this question here and it is exactly my problem. But he didn't receive answer...
I'm looking at the mvvm sample desktop app supplied with the ribbon download for Oct 2010.
http://www.microsoft.com/download/en/details.aspx?id=11877
The desktop app complies and runs, but I get exceptions in the designer, preventing me from working with the properties editor in VS2010. I have not modified the sample code.
Here's the information I get about the error:
** The 'DataType' property of the 'ItemContainerTemplateKey' type can be set only during initialization.
** Error 5 Exception has been thrown by the target of an invocation. C:\Program Files (x86)\Microsoft Ribbon for WPF\MicrosoftRibbonForWPFSourceAndSamples\SamplesCommon\v4.0\UserControlMvvm.xaml 117 78 RibbonWindowSample_v40
The error occurs 6 times throughout the sample, once each time the x:Key is set on the ItemContainerTemplateKey. Two of the 6 code snippetts causing the error are shown below.
<ItemContainerTemplate x:Key="{ItemContainerTemplateKey DataType={x:Type data:GalleryData}}"> <ribbon:RibbonGallery /> </ItemContainerTemplate> <ItemContainerTemplate x:Key="{ItemContainerTemplateKey DataType={x:Type data:MenuItemData}}"> <ribbon:RibbonMenuItem /> </ItemContainerTemplate>How can I prevent the exceptions from being thrown? Thanks for any help.