これを含める
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>