Пример #1
0
        partial void View_SwipeRecognized(UISwipeGestureRecognizer sender)
        {
            CalculationsHistoryController calcController = this.Storyboard.InstantiateViewController("CalculationsHistoryController") as CalculationsHistoryController;

            if (Calcs != null)
            {
                calcController.Calculations = Calcs;
                this.NavigationController.PushViewController(calcController, true);
            }
        }
Пример #2
0
 public CalcHistoryDataSource(CalculationsHistoryController controller)
 {
     this.controller = controller;
 }