Esempio n. 1
0
 /// <summary>
 /// Adds the specified mouse hover manipulator and invokes the <see cref="TouchManipulator.Started" /> method with the specified mouse event arguments.
 /// </summary>
 /// <param name="view">The plot view.</param>
 /// <param name="manipulator">The manipulator.</param>
 /// <param name="args">The <see cref="OxyTouchEventArgs" /> instance containing the event data.</param>
 public virtual void AddTouchManipulator(
     IView view,
     ManipulatorBase <OxyTouchEventArgs> manipulator,
     OxyTouchEventArgs args)
 {
     this.TouchManipulators.Add(manipulator);
     manipulator.Started(args);
 }
Esempio n. 2
0
 /// <summary>
 /// Adds the specified mouse hover manipulator and invokes the <see cref="MouseManipulator.Started" /> method with the specified mouse event arguments.
 /// </summary>
 /// <param name="view">The plot view.</param>
 /// <param name="manipulator">The manipulator.</param>
 /// <param name="args">The <see cref="OxyMouseEventArgs" /> instance containing the event data.</param>
 public virtual void AddHoverManipulator(
     IView view,
     ManipulatorBase <OxyMouseEventArgs> manipulator,
     OxyMouseEventArgs args)
 {
     this.MouseHoverManipulators.Add(manipulator);
     manipulator.Started(args);
 }
Esempio n. 3
0
 /// <summary>
 /// Adds the specified mouse hover manipulator and invokes the <see cref="MouseManipulator.Started" /> method with the specified mouse event arguments.
 /// </summary>
 /// <param name="view">The plot view.</param>
 /// <param name="manipulator">The manipulator.</param>
 /// <param name="args">The <see cref="OxyMouseEventArgs" /> instance containing the event data.</param>
 public virtual void AddHoverManipulator(
     IView view,
     ManipulatorBase<OxyMouseEventArgs> manipulator,
     OxyMouseEventArgs args)
 {
     this.MouseHoverManipulators.Add(manipulator);
     manipulator.Started(args);
 }
Esempio n. 4
0
 /// <summary>
 /// Adds the specified mouse hover manipulator and invokes the <see cref="TouchManipulator.Started" /> method with the specified mouse event arguments.
 /// </summary>
 /// <param name="view">The plot view.</param>
 /// <param name="manipulator">The manipulator.</param>
 /// <param name="args">The <see cref="OxyTouchEventArgs" /> instance containing the event data.</param>
 public virtual void AddTouchManipulator(
     IView view,
     ManipulatorBase<OxyTouchEventArgs> manipulator,
     OxyTouchEventArgs args)
 {
     this.TouchManipulators.Add(manipulator);
     manipulator.Started(args);
 }