Resources String to Xaml in Win 7 phone
I Want to do something like this (but in win phone 7):
In Silverlight i can use in resources,
<sys:String x:Key="ResourceString">Resource String</sys:String>
And use it for example:
<TextBlock Text="{StaticResource ResourceString}"&开发者_运维问答gt;</TextBlock>
The question is:
How do I use a String resource in winphone 7?
Thanks.
Check out this MSDN document about string resources:
http://msdn.microsoft.com/en-us/library/ff637520(v=VS.92).aspx
精彩评论