Skip to content

Instantly share code, notes, and snippets.

@icebeam7
Created November 21, 2019 01:29
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 icebeam7/3a0ae1a09ffc26a07a9a5a32dd5f0ed8 to your computer and use it in GitHub Desktop.
Save icebeam7/3a0ae1a09ffc26a07a9a5a32dd5f0ed8 to your computer and use it in GitHub Desktop.
DemoCamara: MenuView.xaml.cs
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
namespace DemoCamara.Views
{
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class MenuView : ContentPage
{
public MenuView()
{
InitializeComponent();
BindingContext = new ViewModels.MenuViewModel(Navigation);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment