Ejemplo n.º 1
0
        partial void CalendarButton_TouchUpInside(UIButton sender)
        {
            NutritionPage nutritionController = this.Storyboard.InstantiateViewController("NutritionPage") as NutritionPage;

            nutritionController.Title = "Calendar";
            this.NavigationController.PushViewController(nutritionController, true);
            //CalendarPage calendarController = this.Storyboard.InstantiateViewController("CalendarPage") as CalendarPage;
            //this.NavigationController.PushViewController (calendarController, true);
        }
Ejemplo n.º 2
0
        partial void NutritionButton_TouchUpInside(UIButton sender)
        {
            NutritionPage nutritionController = this.Storyboard.InstantiateViewController("NutritionPage") as NutritionPage;

            this.NavigationController.PushViewController(nutritionController, true);
        }