How can I layer one control over another so that that bottom control receives mouse events?
• Option #1: If the top control does not need to handle mouse events, you can set its IsHitTestVisible property to False. In this case, the two controls do not have to directly descend from one another. • Option #2: If the top control needs to handle mouse events, make sure that the top control is a descendent of the bottom control in the visual control hierarchy (for example top control is a direct child of bottom control). Mouse events propagate down (tunnel) and then up (bubble) the visual control hierarchy, so you can handle any mouse event at any level that you desire. • Key concept: (see Routed Events Overview).