I am localizing my project using the RESX way (http://www.codeproject.com/Articles/35159/WPF-Localization-Using-RESX-Files).
I have had no problems so far when localizing strings inside the <Window>
scope, for instance:
ribbon:RibbonTab Header="{Resx W.Misc}"
I tried to localize strings inside the <Window.Resource>
, for example:
<Button x:Key="Misc Button" Content ="{Resx W.Misc}"></Button>
When I used the resource, the button instead shows up: #W.Misc
.
Why is that happening?