Hi, I have a canvas with user controls arranged on it. When a tooltip is assigned to the usercontrol or one of its children, that tooltip does not show (open event does not get fired either). I do not explicitly disable any of them.
I've placed plenty of tooltips elsewhere in the application and they all show, except the ones on the usercontrol I created.
Any ideas?
Hierarchy is roughly as follow:
<Grid>
 <Canvas>
  <UserControl>
   <Canvas>
    <Line/>
    <Rectangle/>
   </Canvas>
  </UserControl>
 </Canvas
</Grid>