Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

7
  • 5
    Thanks, but is there any way to specify the link-text ("Click here" in this case) through binding ? Commented Dec 26, 2013 at 6:52
  • 9
    Simply put a Textblock inside the Hyperlink again and Bind the Textproperty Commented Mar 12, 2014 at 15:09
  • 1
    @Thomas - To execute a command, simply bind the necessary command to the Hyperlink's Command property. Commented Nov 13, 2015 at 15:16
  • 3
    Important remark: you must have a non empty NavigateUri or event RequestNavigate is never called Commented Nov 7, 2016 at 18:32
  • 13
    I had to do it that way: Process.Start(new ProcessStartInfo(e.Uri.AbsoluteUri) { UseShellExecute = true }); otherwise it was saying it was not finding the specified file. Commented May 28, 2020 at 7:28