Exemplo n.º 1
0
        public void RowSelected(UITableView tableView, NSIndexPath indexPath)
        {
            tableView.DeselectRow(indexPath, true);
            MenuItem item   = Items [indexPath.Row];
            Action   action = item.Action;

            if (action != null)
            {
                action();
            }
            ContainerController.HideMenu();
        }
Exemplo n.º 2
0
 partial void CloseMenu(UIButton sender)
 {
     ContainerController.HideMenu();
 }