Example #1
0
        partial void StarStartClicked(MonoTouch.Foundation.NSObject sender)
        {
            AppDelegate        appDelegate = UIApplication.SharedApplication.Delegate as AppDelegate;
            FavoritesDbManager favorites   = appDelegate.FavoriteLocations;

            FavoriteLocation fav = new FavoriteLocation();

            fav.Location = txtStartLocation.Text;

            favorites.SaveFavoriteLocation(fav);
            UIAlertView alert = new UIAlertView("Saved", "Location saved to favorites.", null, "OK", null);

            alert.Show();
        }