Beispiel #1
0
 private void CaptureAndStartManip(IVdShape sh, Point pt, object sender, TouchDevice td)
 {
     sh.StartManip(pt, sender);
     sh.UnderlyingControl().CaptureMouse();
     if (td != null)
     {
         sh.UnderlyingControl().CaptureTouch(td);
     }
     Console.WriteLine("Scene Mgr : CaptureAndStartManip");
 }
Beispiel #2
0
        void CaptureAndStartManip(IVdShape sh, Point pt, object sender, TouchDevice td)
        {
            if (sh.ShapeCode() == VdShapeType.Cluster)
            {
                ((VdCluster)sh).Captions.UpdateRelatives();
            }

            sh.StartManip(pt, sender);
            sh.UnderlyingControl().CaptureMouse();
            if (td != null)
            {
                sh.UnderlyingControl().CaptureTouch(td);
            }

            Console.WriteLine("CaptureAndStartManip");
        }
Beispiel #3
0
 private void CaptureAndStartManip(IVdShape sh, Point pt, object sender, TouchDevice td)
 {
     sh.StartManip(pt, sender);
     sh.UnderlyingControl().CaptureMouse();
     if (td!=null)
         sh.UnderlyingControl().CaptureTouch(td);
     Console.WriteLine("Scene Mgr : CaptureAndStartManip");
 }
Beispiel #4
0
        void CaptureAndStartManip(IVdShape sh, Point pt, object sender, TouchDevice td)
        {
            if (sh.ShapeCode() == VdShapeType.Cluster)
            {
                ((VdCluster)sh).Captions.UpdateRelatives();
            }
            
            sh.StartManip(pt, sender);
            sh.UnderlyingControl().CaptureMouse();
            if (td != null)
                sh.UnderlyingControl().CaptureTouch(td);

            Console.WriteLine("CaptureAndStartManip");
        }