Skip to content

Instantly share code, notes, and snippets.

@TBertuzzi
Created February 18, 2022 14:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TBertuzzi/4a2307d876d232cdf8a30c8076c5b2bb to your computer and use it in GitHub Desktop.
Save TBertuzzi/4a2307d876d232cdf8a30c8076c5b2bb to your computer and use it in GitHub Desktop.
MultiLingua
using System;
using System.Globalization;
using System.Threading;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
namespace XamarinFormsMultiLinguagem
{
public partial class App : Application
{
public App()
{
Thread.CurrentThread.CurrentUICulture = new CultureInfo("pt-BR");
InitializeComponent();
MainPage = new NavigationPage(new MainPage());
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment