I've a question about localization resources at windows-phone.
Let's say, I have a string in my Resources file, which should look like as:
This is some text. This value is bold. This one is italic.
And that all stored in a single string field. How could I define such text styles like bold or italic in the Resources itself? I know, I can predefine some custom fonts, like this:
<FontFamily x:Key="CustomBold">...</FontFamily>
and then add is as {StaticResource CustomBold}
in page, but that can be a solution if the whole text in string field is bold. And what if I want to make bold a single word in the middle of the phrase?
I want to use native c#-style Resources(i.e. string name -> string value), not writing different implementation.