Exemple #1
0
 public virtual void RightDown(UIMouseEvent evt)
 {
     OnRightDown?.Invoke(evt, this);
     Parent?.RightDown(evt);
 }
Exemple #2
0
 public virtual void RightMouseDown(UIMouseEventArgs e)
 {
     IsRightDown = true;
     OnRightDown?.Invoke(this, e);
     Parent?.RightMouseDown(e);
 }