Ejemplo n.º 1
0
 public Task <Guid> CreateMouseEffectAsync(MouseEffect effect)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 2
0
 public Task <Guid> CreateMouseEffectAsync <T>(MouseEffect effect, T data)
     where T : struct
 {
     throw new NotImplementedException();
 }
 public void DoubleClickOn(double x, double y)
 {
     Canvas.SetLeft(MouseEffect, x);
     Canvas.SetTop(MouseEffect, y);
     MouseEffect.DoubleClick();
 }