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(); }
partial void CloseMenu(UIButton sender) { ContainerController.HideMenu(); }