Skip to content

Instantly share code, notes, and snippets.

@Pujolsluis
Created December 14, 2019 20:07
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 Pujolsluis/031e3c08cc1c51c11beefd31f649b6fb to your computer and use it in GitHub Desktop.
Save Pujolsluis/031e3c08cc1c51c11beefd31f649b6fb to your computer and use it in GitHub Desktop.
Completed Updrage of SlideView Code behind
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using SliderViewSample.Models;
using SliderViewSample.ViewModels;
using Xamarin.Forms;
namespace SliderViewSample
{
public partial class MainPage : ContentPage
{
MainPageViewModel Context;
public MainPage()
{
InitializeComponent();
this.BindingContext = new MainPageViewModel();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment