我想將文本框字符串轉換爲超鏈接,因此當用戶點擊它時,它將指向該路徑。將文本框文本轉換爲超鏈接C#windowForm應用程序
string filepath = @"D:\Folder\MyFolder" ;
我已經厭倦了System.Diagnostics.Process.Start
但這將轉換整個文本框我想......我想只有特定的字符串。
{
string filepath = @"D:\Folder\MyFolder";
textBox3.Text += filepath + "\r\n";
textBox3.Text += "WARNINGS :" + werr + "\r\n\r\n\r";
textFound = true;
}
[在c#文本框鏈接]的可能的複製(http://stackoverflow.com/questions/321037/links-in-c-sharp-textbox) – active92