Change the method Application_Startupin App.xaml.cs so that it looks like this: -
private void Application_Startup(object sender, StartupEventArgs e)
{
Resources.Add("DefaultCulture", System.Globalization.CultureInfo.CurrentCulture);
this.RootVisual = new MainPage();
}
, , : -
Content="{Binding FeePeriodActual, Mode=OneWay,StringFormat=\{0:c\}, ConverterCulture={StaticResource DefaultCulture}}"