Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a grid that contains several smaller images that are overlayed by a half-transparent image. I now want to get the MouseUpEvent from the smaller images below the overlay. So far, I didn't manage to do so. I didn't find anything on this here.

My .xaml looks like this:

<Grid>
  <Image x:Name="Button1" ...  MouseLeftButtonUp="WP7LargeTile_LeftClick"/>
  <Image x:Name="Button2" ...  MouseLeftButtonUp="WP7LargeTile_LeftClick"/>
  <Image x:Name="GradientOverlay" ... />
</Grid>

The overlay covers both buttons and that's why I think the event is not raised. But what can I do to get the events from the buttons and have them overlayed at the same time?

Thank you.

share|improve this question

1 Answer

up vote 1 down vote accepted

Use the IsHitTestVisible property

<Grid>
  <Image x:Name="Button1" ...  MouseLeftButtonUp="WP7LargeTile_LeftClick"/>
  <Image x:Name="Button2" ...  MouseLeftButtonUp="WP7LargeTile_LeftClick"/>
  <Image x:Name="GradientOverlay" IsHitTestVisible="False" ... />
</Grid>
share|improve this answer
Thank you! It's that easy if you know it... – Sebastian Rösch Sep 13 '11 at 9:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.