I use WPF UserControls to design some part of my application. I'm using blend 2.5 for the graphical part. But when I have a user control into any content, it won't show up in blend and a, exception will be raised, saying that the resource couldn't be located.
My application is localized, I moved my localized DLL into Blend folder.
Here is a piece of code which won't work :
<StackPanel>
<RadioButton x:Name="radioBasicInfo" Content="{DynamicResource string_newUnitBasicInfo}" Margin="0,0,0,5" Checked="checkErrors"/>
<content:CoverContent></content:CoverContent>
</StackPanel>
I've googled it but didn't find any solution, and this is very annoying since you cannot see what is the final render into blend.
Hope you can help me. Boris
It actually came from a localization issue. The resources dll in the blend folder was not up to date and then it didn't find the different xaml references, which is weird because there is no reference to any xaml file into my localized dictionaries...
But maybe I'm something about localization...
I'm quite upset that Microsoft didn't handle localized resources in Blend, hopefully they will fix it in Blend 3.0.