public IMouseHandler MouseClick(MouseClickNotification arg) { if (Left != null) { Left = Left.MouseClick(arg); } if (Right != null) { Right = Right.MouseClick(arg); } return(ThisIfLeftAndRightIsNotNull()); }