Hi!
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