c# - How to make strings from Resources.resw show up in the designer? -
in shared
project of universal app have 2 folders inside of strings
folder, en-us
, sv-se
. inside of both folders have resources.resw
files. these contain strings app.
when run app i'm able see strings, mapped using x:uid
, i'm not able see string when using designer designer.
moving english resources.resw
file root of strings
generates error, telling me there no resources.resw file default language (en-us). also, not make strings appear in editor.
is possible make resources *.resw appear in designer?
i'd surprised if other project works think. strings in *.resw files not automatically understood designer. given this:
<textblock x:uid="mywelcomemessage" />
in designer show empty textblock
because designer doesn't localized resource @ design-time. recommendation use placeholder values items localizing resources.
Comments
Post a Comment