テキストボックスの文字列をハイパーリンクに変換したいので、そのパスをユーザーがクリックするとハイパーリンクになります。テキストボックスのテキストをハイパーリンク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