コード例 #1
0
 public void PullableViewDidChangeState(PullableView pView, bool opened)
 {
     if (opened)
     {
         pullUpLabel.Text = "Now I'm open!";
     }
     else
     {
         pullUpLabel.Text = "Now I'm closed, pull me up again!";
     }
 }
コード例 #2
0
        public override void ViewDidLoad()
        {
            base.ViewDidLoad();
            float xOffset = 0;
            if (!UserInterfaceIdiomIsPhone)
            {
                xOffset = 224;
            }

            pullRightView = new PullableView(new RectangleF(0, 200, 200, 300))
            {
                BackgroundColor = UIColor.LightGray,
                OpenedCenter = new PointF(100, 200),
                ClosedCenter = new PointF(-70, 200),

                Animate = false,
            };
            pullRightView.Center = pullRightView.ClosedCenter;
            pullRightView.HandleView.BackgroundColor = UIColor.DarkGray;
            pullRightView.HandleView.Frame = new RectangleF(170, 0, 30, 300);

            this.View.AddSubview(pullRightView);
            float rot = (float)(Math.PI / 2);
            UILabel label = new UILabel(new RectangleF(0, 0, 200, 30))
            {
                BackgroundColor = UIColor.DarkGray,
                TextColor = UIColor.White,
                Text = "Pull me to the right!",
                Transform = CGAffineTransform.MakeRotation(-rot),
                Center = new PointF(185, 150),
            };
            pullRightView.AddSubview(label);
            label = new UILabel(new RectangleF(4, 120, 200, 30))
            {
                BackgroundColor = UIColor.Clear,
                TextColor = UIColor.White,
                Text = "I'm not animated"
            };
            pullRightView.AddSubview(label);
            pullUpView = new StyledPullableView(new RectangleF(xOffset, 0, 320, 460))
            {
                OpenedCenter = new PointF(160 + xOffset, this.View.Frame.Size.Height),
                ClosedCenter = new PointF(160 + xOffset, this.View.Frame.Size.Height + 200),
                TheDelegate = this,
            };
            pullUpView.Center = pullUpView.ClosedCenter;
            pullUpView.HandleView.Frame = new RectangleF(0, 0, 320, 40);
            this.View.AddSubview(pullUpView);
            pullUpLabel = new UILabel(new RectangleF(0, 4, 320, 20))
            {
                TextAlignment = UITextAlignment.Center,
                BackgroundColor = UIColor.Clear,
                TextColor = UIColor.LightGray,
                Text = "Pull me up!",
            };
            pullUpView.AddSubview(pullUpLabel);
            label = new UILabel(new RectangleF(0, 80, 320, 64))
            {
                TextAlignment = UITextAlignment.Center,
                BackgroundColor = UIColor.Clear,
                TextColor = UIColor.White,
                ShadowColor = UIColor.Black,
                ShadowOffset = new SizeF(1, 1),
                Text = "I only go half-way up!",
            };
            pullUpView.AddSubview(label);
            pullDownView = new StyledPullableView(new RectangleF(xOffset, 0, 320, 460))
            {
                OpenedCenter = new PointF(160 + xOffset, 230),
                ClosedCenter = new PointF(160 + xOffset, -200),
            };
            pullDownView.Center = pullDownView.ClosedCenter;

            this.View.AddSubview(pullDownView);
            label = new UILabel(new RectangleF(0, 200, 320, 64))
            {
                TextAlignment = UITextAlignment.Center,
                BackgroundColor = UIColor.Clear,
                TextColor = UIColor.White,
                ShadowColor = UIColor.Black,
                ShadowOffset = new SizeF(1, 1),
                Text = "Look at this beautiful linen texture!",
            };
            pullDownView.AddSubview(label);
        }