コード例 #1
0
        public DraggableBoxView()
        {
            TouchEffect touchEffect = new TouchEffect
            {
                Capture = true
            };

            touchEffect.TouchAction += OnTouchEffectAction;
            Effects.Add(touchEffect);
        }
コード例 #2
0
ファイル: DraggableImage.cs プロジェクト: phisakel/AppleCount
        public DraggableImage()
        {
            TouchEffect touchEffect = new TouchEffect
            {
                Capture = true
            };

            touchEffect.TouchAction += OnTouchEffectAction;
            IsEnabled = true;
            Effects.Add(touchEffect);
        }