当前位置: 首页>>代码示例>>C#>>正文


C# ITarget.GetPoint方法代码示例

本文整理汇总了C#中ITarget.GetPoint方法的典型用法代码示例。如果您正苦于以下问题:C# ITarget.GetPoint方法的具体用法?C# ITarget.GetPoint怎么用?C# ITarget.GetPoint使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ITarget的用法示例。


在下文中一共展示了ITarget.GetPoint方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: SetShowcase

        public void SetShowcase(ITarget target, bool animate)
        {
            PostDelayed(() =>
            {
                if (target != null && target.GetPoint() != null)
                {
                    var targetPoint = target.GetPoint();

                    mHasNoTarget = false;

                    if (animate)
                    {
                        var animator = PointAnimator.OfPoints(this, targetPoint);
                        animator.SetDuration(ConfigurationOptions.FadeInDuration);
                        animator.SetInterpolator(INTERPOLATOR);
                        animator.Start();

                        // as long as the Export attribute is used is this unnessessary
            //                        var values = new Point[]{targetPoint};
            //
            //                        var set = new Android.Animation.AnimatorSet();
            //                        set.SetDuration(ConfigurationOptions.FadeInDuration);
            //
            //                        var xValues = new int[values.Length];
            //                        var yValues = new int[values.Length];
            //
            //                        for (int i = 0; i < values.Length; i++)
            //                        {
            //                            xValues[i] = values[i].X;
            //                            yValues[i] = values[i].Y;
            //                        }
            //
            //
            //                        var xAnimator = Android.Animation.ObjectAnimator.OfInt(this, "showcaseX", xValues);
            //                        var yAnimator = Android.Animation.ObjectAnimator.OfInt(this, "showcaseY", yValues);
            //
            //
            //                        var xAnimator = Android.Animation.ObjectAnimator.OfInt(xValues);
            //                        xAnimator.Update+= delegate(object sender, Android.Animation.ValueAnimator.AnimatorUpdateEventArgs e) {
            //                            ShowcaseX = (int) e.Animation.AnimatedValue;
            //                            Console.WriteLine("x: " + ShowcaseX);
            //                        };
            //
            //                        var yAnimator = Android.Animation.ObjectAnimator.OfInt(yValues);
            //                        yAnimator.Update += delegate(object sender, Android.Animation.ValueAnimator.AnimatorUpdateEventArgs e) {
            //                            ShowcaseY = (int)e.Animation.AnimatedValue;
            //                            Console.WriteLine("y: " + ShowcaseY);
            //                        };
            //
            //                        set.PlayTogether(new List<Android.Animation.Animator>(){xAnimator, yAnimator});
            //
            //                        //set.Play(xAnimator).Before(yAnimator);
            //
            //                        set.SetInterpolator(INTERPOLATOR);
            //                        set.Start();
                    }
                    else
                    {
                        SetShowcasePosition(targetPoint);
                    }
                }
                else
                {
                    mHasNoTarget = true;
                    Invalidate();
                }
            }, 100);
        }
开发者ID:andyci,项目名称:ShowcaseView,代码行数:68,代码来源:ShowcaseView.cs

示例2: PointTo

 /// <summary>
 /// Point to a specific point on the screen.
 /// </summary>
 /// <param name="target">The target to point to.</param>
 public void PointTo(ITarget target)
 {
     Post(() =>
     {
         mHandy = GetHand();
         Point targetPoint = target.GetPoint();
         SharpShowcaseView.Animation.AnimationUtils.CreateMovementAnimation(mHandy, targetPoint.X, targetPoint.Y).Start();
     });
 }
开发者ID:andyci,项目名称:ShowcaseView,代码行数:13,代码来源:ShowcaseView.cs


注:本文中的ITarget.GetPoint方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。