Example #1
0
        public override void MouseDragged(NSEvent theEvent)
        {
            base.MouseDragged(theEvent);
            PointF np = ConvertPointFromView(theEvent.LocationInWindow, null);

            BaseGraph.Mouse_Move(np.X, Bounds.Height - np.Y);
        }
Example #2
0
 private void Graph_MouseMove(object sender, MouseEventArgs e)
 {
     BaseGraph.Mouse_Move(e.X, e.Y);
 }
Example #3
0
 protected void OnGraphEventBoxMotionNotifyEvent(object o, MotionNotifyEventArgs args)
 {
     BaseGraph.Mouse_Move(args.Event.X, args.Event.Y);
 }