Skip to content

Instantly share code, notes, and snippets.

@TBertuzzi
Created February 18, 2022 14:48
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/c0bf4934a29e87e15e864909a171d091 to your computer and use it in GitHub Desktop.
Save TBertuzzi/c0bf4934a29e87e15e864909a171d091 to your computer and use it in GitHub Desktop.
MultiLingua
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
namespace XamarinFormsMultiLinguagem
{
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class BemVindoPage : ContentPage
{
public BemVindoPage()
{
InitializeComponent();
}
private void btnVoltarClick(object sender, EventArgs e)
{
App.Current.MainPage = new NavigationPage(new MainPage());
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment