I have a custom task pane for my Excel VSTO addin. In this task pane I want to display a clickable link (for example "https://stackoverflow.com") to the user which opens the user's browser and navigates to the site when clicked. When I programmatically put the text into the task pane's RichTextBox the text turns blue as if it is being recognized as a URL, however when the text is clicked on nothing happens. Is there a property I need to set for the RichTextBox to allow the link to be clicked on?
0
votes
RichTextBox
is present in both WinForms and WPF (this can be used with ElementHost, if you're not already aware). I suggest altering the tags to match whichever you're using.vsto
andexcel
are not relevant in this case. - Chris