包括这个
xmlns:system="clr-namespace:System;assembly=mscorlib"
有这样的资源system:string
。
<Window.Resources>
<system:String x:Key="GreetingText">Hello</system:String>
</Window.Resources>
并在 xaml 中使用它作为
<TextBlock Text="{StaticResource GreetingText}" />
并在后面的代码中使用它
string s = (string)objectofMainWindow.Resources["GreetingText"];
编辑:回答您的评论
它是这样的。资源字典在里面Window.Resources
<Window
xmlns:system="clr-namespace:System;assembly=mscorlib"
Your Rest namespaces
/>
<Window.Resources>
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:ATTFamilyMap.strings">
<system:String x:Key="GreetingText">Hello</system:String>
</ResourceDictionary>
</Window.Resources>
Your Code
</Window>