0
我想要第二行,更改爲其他顏色。更改Richtextbox中一行的顏色
我的代碼如下:
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」
我想改變顏色後,輸入文字
請給我看看正確的方法 – mrJack