You need to add this link in App.xaml
xmlns:sys="clr-namespace:System;assembly=mscorlib"
Then you need to add a line to the section <Application.Resources>
<sys:String x:Key="ResourceString">Resource String</clr:String>
Then all you have to do is refer to * {StaticResource ResourceString} for example:
<TextBlock Text="{StaticResource ResourceString}"></TextBlock>
source
share