I’m trying to set the cursor so it changes to a hand when the mouse hovers the item.
It doesn’t seem to have any effect, the cursor remains the default one.
Example:
<Grid x:Name="LayoutRoot" Background="White">
<Rectangle Width="100" Height="100" Fill="Black" Cursor="Arrow" />
</Grid>
Any idea why?
Thanks!
Silly question, but…Arrow is basically the default cursor. Did you try this with other cursors like “Hand” or “Wait”?