I downloaded the WinRT Toolkit and was good hope that I would be able to change the Cursor when the mouseover event is triggered, but the Cursor is only changed to "Hand" for some
milliseconds, afterwards the "Default" Cursor is shown again.
Is there any way to achieve the "Hand cursor" on mouseover of the Hyperlink button in a richtextblock? (like in the Default Messages app)
Code Snippet:
RichTextBlock textBlock =
new
RichTextBlock();
var
paragraph = new
Paragraph();
var runs =
new
List<Inline>();
var link =
new
HyperlinkButton();
FrameworkElementExtensions.SetSystemCursor(link,
CoreCursorType.Hand);