というテキストボックスがtxtMessages
あり、そのテキストボックスのテキストの色を変更したいのですが、テキスト全体ではありません例:
KraToS : こんにちは、問題があります
( ) が赤く塗られている部分の KrAToS が必要ですがthis.client.NetworkName
、残りのテキストは黒のままです。
これが私のコードです:誰でも助けてくれることを願っています
private void SendMessage()
{
if ( this.client.Connected && this.txtNewMessage.Text.Trim() != "" )
{
this.client.SendCommand(new Proshot.CommandClient.Command(Proshot.CommandClient.CommandType.Message , IPAddress.Broadcast , this.txtNewMessage.Text));
this.txtMessages.Text += this.client.NetworkName;
this.txtMessages.Text += " : " + this.txtNewMessage.Text.Trim() + Environment.NewLine;
this.txtNewMessage.Text = "";
this.txtNewMessage.Focus();
}
}