When I modify my ressource file (.resx) add text or modify, the constructor of my ressource, always go to internal, and after that when i run my silverlight i have an error in my binding XAML.
It's there a way to avoid this scenario ? I need to go in the designer of my ressource, and put the constructor to public to solve the problem
I use my ressource like this in my xaml file
<UserControl.Resources>
<resources:LibraryItemDetailsView x:Key="LibraryItemDetailsViewResources"></resources:LibraryItemDetailsView>
</UserControl.Resources>
<TextBlock FontSize="12" FontWeight="Bold" Text="{Binding Path=FileSelectedText3, Source={StaticResource LibraryItemDetailsViewResources}}"></TextBlock>