Last active
November 21, 2019 13:34
-
-
Save icebeam7/a9b3fc7e0995591bd0ffee4a9e6dc8ac to your computer and use it in GitHub Desktop.
MVVMDemo: ListProductView.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; | |
namespace MVVMDemo.Views | |
{ | |
[XamlCompilation(XamlCompilationOptions.Compile)] | |
public partial class ListProductView : ContentPage | |
{ | |
public ListProductView() | |
{ | |
InitializeComponent(); | |
BindingContext = new ViewModels.ListProductViewModel(Navigation); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment