Created
July 22, 2019 15:08
-
-
Save LucioMSP/f6e312ced7d49eec7e23bfa054377ff2 to your computer and use it in GitHub Desktop.
MainPage.xaml.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Xamarin.Forms; | |
using Xamarin.Forms.Xaml; | |
using CurrencyUISample.ViewModels; | |
namespace CurrencyUISample | |
{ | |
[XamlCompilation(XamlCompilationOptions.Compile)] | |
public partial class MainPage : ContentPage | |
{ | |
MainPageVM vm = null; | |
public MainPage() | |
{ | |
InitializeComponent(); | |
vm = new MainPageVM(this.Navigation); | |
this.BindingContext = vm; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment