使用resources.resx中的字符串值

时间:2014-12-15 06:56:20

标签: c# xaml windows-phone-8 windows-phone

我想使用resources.resx文件存储字符串。我在Properties中创建了resources.resx文件,并创建了一个名为st的示例字符串。使用它我编写了以下代码 -

xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:p="clr-namespace:Brand_Boyz.Properties"

并使用文本块文本值作为     

但是它给出了错误,说明在Windows Silverlight项目中不支持静态。 那我该如何使用呢?

1 个答案:

答案 0 :(得分:-1)

您可以使用thisthis

TextReader sr = new StringReader("<Root><Child/></Root>");
XElement xmlTree = XElement.Load(sr);
sr.Close();
Console.WriteLine(xmlTree);