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.

It's true that I'm not actually tapping in the simulator - as my dev machine is not touch-enabled - but I don't think that's the problem, as my clicking within the grid should fire the event.

Here's my xaml:

<Grid x:Name="grid1" Margin="24,0,0,0" Grid.Row="1" Tapped="Grid_OnTapped">

...and my code:

private void Grid_OnTapped(object sender, TappedRoutedEventArgs args)
{
     if (args.OriginalSource.Equals(grid1))
     {
    . . .

I never make it to the Grid_OnTapped event. What am I missing?

share|improve this question
Tapped is also called if clicked with mouse... Try setting Background="Transparent". Maybe you should show some code inside the grid... – Rico Suter Nov 16 '12 at 19:27
That was it; make it an answer and I'll mark it as such. – Clay Shannon Nov 17 '12 at 15:25

1 Answer

up vote 3 down vote accepted

Set Background="Transparent" in your Grid.

share|improve this answer

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.