以图像作为button控件的背景

我在我的资源中有一个图像,我想提供它作为我的button在Windows手机的背景。 怎么做? 我试过这个,但是给出了一个错误

<Button Content="" HorizontalAlignment="Left" BorderBrush="Transparent" Margin="131,681,0,0" Name="button2" Width="81" Grid.Row="1" Click="button2_Click" Height="64" VerticalAlignment="Top" Background="Images/pause.png"/> 

尝试这个,

  <Button Content="" HorizontalAlignment="Left" Margin="114,36,0,0" Grid.Row="1" VerticalAlignment="Top"> <Button.Background> <ImageBrush Stretch="Fill" ImageSource="/Images/pause.png"/> </Button.Background> </Button>