Esempio n. 1
0
        public override void ItemSelected(UICollectionView collectionView, NSIndexPath indexPath)
        {
            var Detail = rows[indexPath.Row];
            InfoPartidaViewController detailViewController = orderDetailViewController.Storyboard.InstantiateViewController("InfoPartidaViewController") as InfoPartidaViewController;

            detailViewController.detail = Detail;
            detailViewController.ModalPresentationStyle = UIModalPresentationStyle.FullScreen;
            orderDetailViewController.PresentViewController(detailViewController, true, null);
        }
Esempio n. 2
0
 public CertificateSource(List <OrderItemLicenseInfo> _rows, InfoPartidaViewController infoPartidaViewController)
 {
     this.rows = _rows;
     this.infoPartidaViewController = infoPartidaViewController;
 }