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