Ejemplo n.º 1
0
 public virtual void RightUp(UIMouseEvent evt)
 {
     OnRightUp?.Invoke(evt, this);
     Parent?.RightUp(evt);
 }
Ejemplo n.º 2
0
 public virtual void RightMouseUp(UIMouseEventArgs e)
 {
     IsRightDown = false;
     OnRightUp?.Invoke(this, e);
     Parent?.RightMouseUp(e);
 }