I have a WPF RichTextBox with isReadOnly set to True. I would like users to be able to click on HyperLinks contained within the RichTextBox, withou
isReadOnly
True
If you want to turn Arrow into a Hand cursor always without default system navigation, below is the approach.
private void Hyperlink_OnMouseEnter(object sender, MouseEventArgs e) { var hyperlink = (Hyperlink)sender; hyperlink.ForceCursor = true; hyperlink.Cursor = Cursors.Hand; }