Example #1
0
        public void HandleMouseDown(MouseEvtWithElement me)
        {
            this.lastMe = Maybe.Just(me);

            this.addMessage("classic dragging " + me.Element.Name);
            this.dragInfo.Set(new DragInfo(me, Canvas.GetLeft(me.Element.Polygon).ZeroIfNaN(), Canvas.GetTop(me.Element.Polygon).ZeroIfNaN()));
        }
Example #2
0
        public void HandleMouseDown(MouseEvtWithElement me)
        {
            this.lastMe = Maybe.Just(me);

            this.addMessage("classic dragging " + me.Element.Name);
            this.dragInfo.Set(new DragInfo(me, Canvas.GetLeft(me.Element.Polygon).ZeroIfNaN(), Canvas.GetTop(me.Element.Polygon).ZeroIfNaN()));
        }
Example #3
0
 public void HandleMouseDown(MouseEvtWithElement me) => this.sMouseDown.Send(me);
Example #4
0
 public EvtDown(MouseEvtWithElement me)
     : base(me)
 {
     this.Me = me;
 }
Example #5
0
 public void HandleMouseDown(MouseEvtWithElement me)
 {
     Task.Run(() => [email protected](new EvtDown(me), this.cts.Token));
 }
Example #6
0
 public void HandleMouseDown(MouseEvtWithElement me) => this.sMouseDown.Send(me);
Example #7
0
 public EvtDown(MouseEvtWithElement me)
     : base(me)
 {
     this.Me = me;
 }
Example #8
0
 public void HandleMouseDown(MouseEvtWithElement me)
 {
     Task.Run(() => [email protected](new EvtDown(me), this.cts.Token));
 }