public Display()
        {
            this.InitializeComponent();
            MobileServiceCollection <Recipes, Recipes> recipes = MainPage.getRecipes();

            new MessageDialog(recipes.LastOrDefault().title + "\n" + recipes.LastOrDefault().ingredients + "\n" + recipes.LastOrDefault().steps).ShowAsync();
        }