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); }
partial void NutritionButton_TouchUpInside(UIButton sender) { NutritionPage nutritionController = this.Storyboard.InstantiateViewController("NutritionPage") as NutritionPage; this.NavigationController.PushViewController(nutritionController, true); }