I'm making a metro style app in C# and I have a normal TextBlock with a link inside it. And all I want to do it to make the cursor change into a hand when it goes over the text block, but unlike in WPF applications, there is no Cursor propriety. I know is a CoreCursor class in Windows.UI.Core. Am I suppose to use it somehow?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

As far as I understand:

In Metro there is no cursor. The cursor you see and are using is just there to be able to simulate touch on your desktop.

link|improve this answer
How do Tweet@rama or Internet Explorer do it then? – Metod Medja Sep 20 '11 at 15:20
I am not sure. But still, when running on a touch device there is no cursor UNLESS the program calculates the position of the pen/first touch and displays a bitmap there. (Software cursor) – Erno Sep 21 '11 at 4:31
1  
Have you actually used Windows 8 with a mouse? There most definitely is a mouse cursor in Metro. (It's probably hidden if you don't have a mouse, but it's absolutely there if you do.) And the mouse does not simulate touch -- if it did, you'd be able to scroll the Start screen by dragging the mouse. – Joe White Oct 18 '11 at 20:54
@JoeWhite - Yes I have. The controls have no mouse property and the mouse icon only shows up in Metro when you use a mouse. I expect that no-one will program a mouse icon in Metro as it is touch oriented. – Erno Oct 19 '11 at 4:45
feedback
Window.Current.CoreWindow.PointerCursor = 
    new Windows.UI.Core.CoreCursor(Windows.UI.Core.CoreCursorType.Hand, 1);
link|improve this answer
In case people can't figure out the namespace: Windows.UI.Xaml.Window.Current.CoreWindow.PointerCursor = new Windows.UI.Core.CoreCursor(Windows.UI.Core.CoreCursorType.Hand, 1); – Jerry Nixon May 22 at 14:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.