Add resource key in MainPage.xaml
Register resource in MainPage.xaml to use localized resource string as static resource.
<Grid.Resources>
<local:Resource x:Key="ResourceString"></local:Resource>
</Grid.Resources>Bind resource key in TextBlock to display localized string in UI.
<StackPanel HorizontalAlignment="Center" Margin="10,10,10,10">
<TextBlock Text="{Binding CountryName, Source={StaticResource ResourceString}}"/>
</StackPanel>
At this point if you run this application you will get XamlParse exception.

The above exception is thrown due to a known issue of access modifier in resource class constructor. We did set the Access Modifier to "Public" but the resource class constructor is still "internal". To change this to "public", open Resource.Designer.cs and modify the constructor access modifier to "public". Every time you open resource designer and make some change, you have to again modify it to "public".
public Resource()
You may create resource wrapper class to avoid modifying constructor access modifier again and again.