ログとして使用するものがRichTextbox
あり、それに何かを追加するには、次のコードを使用します。
Font fontMsg = new Font("Tahoma", 8, FontStyle.Regular);
txtLog.SelectionFont = fontMsg;
txtLog.SelectionColor = Color.MediumVioletRed;
txtLog.SelectedText = "Connection.HTTP: Failed to connect!";
txtLog.SelectedText = "\r\n";
これはテキストボックスに追加され続け、rfcコードを処理する必要がないため、完全に機能します。コードを使用せずに同じ方法で画像を追加することは可能ですか?ありがとう!