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.

In my Windows Store App I use a button which has a star shape with some text. I use the following XAML code for the button:

    <Button  Name="goButton" BorderThickness="0" FontWeight="Bold" HorizontalAlignment="Right"  VerticalAlignment="Top" Margin="0,-91,33,0"  FontSize="25" IsEnabled="True" Click="goButton_Click" >
        <Grid Width="227" Height="222">
            <Image Source="Assets/redstar.png" />
            <StackPanel Orientation="Vertical" Margin="77">
                <TextBlock TextAlignment="Center" Text="Tag"></TextBlock>
                <TextBlock TextAlignment="Center" Text="ist um!"></TextBlock>
            </StackPanel>

        </Grid>
    </Button>

This is what is the button looks like:
Star-shaped button

Unfortunately it often happens that clicks in the area of the star are not recognized, e.g. the event handler is not startet. I suppose that it has something to do with the image, for it works fine if I remove the image from the grid. But this doesn't solve my problem.

Any suggestions?

share|improve this question
Im not much of an expert in Windows Store Apps but have you tried adding the image on the button control rather than in the Grid ? – AltF4_ Nov 28 '12 at 15:48

1 Answer

Don't see anything wrong off the top. You could try a couple of things:

  • Instead of click, try the Tapped event for the button.
  • Try tapped on the container Grid.
  • Get rid of the Grid & put all button content in a StackPanel & then try tapped/clicked on it.
  • Go with patterns like MVVM & associate your button with a Command.

Hope these help!

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.