示例#1
0
        public void UpdateCell(List <PerformanceInfo> perfGroup)
        {
            this.Performances         = perfGroup;
            this.PerformanceDate.Text = perfGroup [0].PerformanceTS.Date.ToLongDateString();

            var rows = (perfGroup.Count / 5);

            if (perfGroup.Count % 5 > 0)
            {
                rows++;
            }

            float height = rows * 46;

            if (performanceView == null)
            {
                performanceView = new UIView(new CGRect(15, 30, 290, height));
                this.ContentView.AddSubview(performanceView);
            }
            else
            {
                foreach (var sub in performanceView.Subviews)
                {
                    sub.RemoveFromSuperview();
                }
            }
            nfloat currentRow = 0;

            nfloat currentCell = 0;

            for (int i = 0; i < perfGroup.Count; i++)
            {
                var perf = perfGroup [i];

                var btnRect = new CGRect(currentCell * 60, currentRow * 46, 50, 36);

                var btn = new PerformanceButton(btnRect, perf);
                currentRow = (i + 1) / 5;
                if ((i + 1) % 5 == 0)
                {
                    currentCell = 0;
                }
                else
                {
                    currentCell++;
                }

                if (perf.AvailableFuture)
                {
                    btn.TouchUpInside += Performance_TouchUpInside;
                    //this.Performances.AddGestureRecognizer (new UITapGestureRecognizer (HandleTapGesture));
                }

                performanceView.AddSubview(btn);
            }
        }
示例#2
0
        void Performance_TouchUpInside(object sender, EventArgs e)
        {
            PerformanceButton btn = (sender as PerformanceButton);

            PerformanceInfo perf = btn.Performance;

            var ticketPurchaseController = Application.Storyboard.InstantiateViewController("TicketPurchaseController") as TicketPurchaseController;

            ticketPurchaseController.Performance = perf;

            Application.NavigationController.PushViewController(ticketPurchaseController, true);
        }
示例#3
0
        //PerformanceInfo SelectedPerformance;

        //int cellCount = 0;

        public void UpdateCell(CinemaInfo cinema, FilmInfo film, UIImage image)
        {
            this.Cinema = cinema;
            this.Film   = film;

            this.Header.Text    = film.TitleWithClassification;
            this.ShortDesc.Text = film.ShortDesc;
            this.Poster.Image   = ImageHelper.ResizeImage(image, 66, 100);

            this.Poster.Layer.CornerRadius       = 5f;
            this.Poster.Layer.MasksToBounds      = true;
            this.Poster.Layer.RasterizationScale = UIScreen.MainScreen.Scale;
            this.Poster.Layer.Opaque             = true;

            var rows = (film.Performances.Count / 4);

            if (film.Performances.Count % 4 > 0)
            {
                rows++;
            }

            float height = rows * 50;

            if (performanceView == null)
            {
                performanceView = new UIView(new CGRect(15, 85, 270, height));
            }
            else
            {
                foreach (var sub in performanceView.Subviews)
                {
                    sub.RemoveFromSuperview();
                }
            }
            nfloat currentRow = 0;

            nfloat currentCell = 0;

            //nfloat current = 0;

            for (int i = 0; i < film.Performances.Count; i++)
            {
                var perf = film.Performances [i];

                var btnRect = new CGRect(currentCell * 60, currentRow * 46, 50, 36);

                var btn = new PerformanceButton(btnRect, perf);

                currentRow = (i + 1) / 5;
                if ((i + 1) % 5 == 0)
                {
                    currentCell = 0;
                }
                else
                {
                    currentCell++;
                }

                if (perf.AvailableFuture)
                {
                    btn.TouchUpInside += Performance_TouchUpInside;
                    //this.Performances.AddGestureRecognizer (new UITapGestureRecognizer (HandleTapGesture));
                }

                performanceView.AddSubview(btn);
            }

            this.ContentView.AddSubview(performanceView);
        }