There is a msdn message that is here . Its essence is this:
<TextBlock x:Uid="MyTextBlock" FontSize="24.667" Text="Design Placeholder" />
Note the x:Uid here. Now it will be displayed back to the key in your RESW file. Everything that has this start key will have properties merged with it. So we have a key in our RESW for “Text”, using the key name MyTextBlock.Text with the value “Hello World” and runtime will make a replacement for you.
Steps:
- Create a text block with the specified
x:Uid . - Create a RESW file for your language, so named for your localization
- Add lines to your RESW to replace the property in your text block.
source share