I am using RichTextBox in a C # / Winforms application.
Show some text in this control that has UNC paths embedded in it: for example: filePath = "\\ serverName \ DirName \ File"
Richtextbox shows this file path as an interactive hyperlink in the user interface. filePath = " \\ server_name \ DirName \ File.doc "
I want to show this as plain text. How to do it?
Thank.
source
share