在TextBox控件中创建超链接

问题描述:

有没有办法在Textbox控件中创建超链接?问题:我只希望某些文本充当超链接。例如,StackOverflow.com允许我只将这个文本作为超链接。有没有办法在C#中使用文本框进行此操作?

Is there some way that I could create a hyperlink within a Textbox control? The catch: I would like only certain text to act as a hyperlink. For example, StackOverflow.com allows me to make only THIS text act as a hyperlink. Is there some way to do this in C# from withing a Textbox?

使用RichEditCtrl。文本是否需要可编辑?否则,您可以在StackPanel中使用标签和超链接。

Use a RichEditCtrl. Does the text need to be editable? Otherwise you could use Labels and Hyperlinks in a StackPanel.