Exemplo n.º 1
0
        public override void MouseDown(NSEvent theEvent)
        {
            base.MouseDown(theEvent);
            PointF np = ConvertPointFromView(theEvent.LocationInWindow, null);

            BaseGraph.Mouse_Down(np.X, Bounds.Height - np.Y);
        }
Exemplo n.º 2
0
 private void Graph_MouseDown(object sender, MouseEventArgs e)
 {
     BaseGraph.Mouse_Down(e.X, e.Y);
 }
Exemplo n.º 3
0
 protected void OnGraphEventBoxButtonPressEvent(object o, ButtonPressEventArgs args)
 {
     BaseGraph.Mouse_Down(args.Event.X, args.Event.Y);
 }