Я хочу сменить курсор на ручку, когда курсирует над кнопкой, например, у меня есть эта кнопка:
<Button Content="" HorizontalAlignment="Left" Margin="229,128,0,0" VerticalAlignment="Top" Height="107" Width="170" Grid.RowSpan="2">
<Button.Template>
<ControlTemplate TargetType="Button">
<Grid>
<Grid.Background>
<ImageBrush ImageSource="africa/picture17.png"/>
</Grid.Background>
<ContentPresenter/>
</Grid>
</ControlTemplate>
</Button.Template>
</Button>
Как изменить курсор на ручку, когда я наводил курсор на кнопку? Я использую Visual Studio 2013 для Windows Store 8 и С# -XAML.