0
2行目を必要とし、別の色に変更します。次のようにリッチテキストボックス内の行の色を変更します
私のコードは次のとおりです。
private void WindowLoaded(object sender, RoutedEventArgs e)
{
UpdateRTBOnDifferentThread("stackoverflow.com" + Environment.NewLine+"stackoverflow.org" + Environment.NewLine);
}
private void UpdateRTBOnDifferentThread(string message)
{
Dispatcher.Invoke(DispatcherPriority.Normal, new DispatcherOperationCallback(delegate
{
var newExternalParagraph = new Paragraph(new Run(message)) {Foreground = Brushes.Black};
richTextBox1.Document.Blocks.Add(newExternalParagraph);
return null;
}), null);
}
二行目は次のとおりです。「stackoverflow.org」
は、私はあなたがどちらかString.Split
を使用することができます入力するテキスト
してください私に正しい方法を教えてください – mrJack