我是WPF的新手,所以请原谅我的无知,我试过谷歌搜索这个问题大约30分钟+似乎无法找到适合我的方案的简单解决方案。
基本上我正在制作一个从服务器读取一行的IRC应用程序,我读取了昵称和消息。并列出如下行:
<Nick> Message typed...
我希望<Nick>
部分以粗体显示。也许后来也许是一种颜色。此外,我看到一些例子正在为每个循环做,但如果我有1000多行并且每次有人输入一些foreach循环,那么这些不会是无效的吗?
请从c#编程方面建议最佳/最简单的方法。
这是我的代码:
private void OnChannelMessage(object sender, IrcEventArgs e)
{
if (!txtActivity.Dispatcher.CheckAccess())
{
txtActivity.Dispatcher.Invoke(DispatcherPriority.Normal, new Action(delegate()
{
txtActivity.AppendText(string.Format("<Bold><{0}:{1}></Bold> {2}\n", e.Data.Channel, e.Data.Nick, e.Data.Message));
//Paragraph p = new Paragraph();
//p.Inlines.Add(new Bold(new Run(string.Format("<{0}> ", e.Data.Nick))));
//p.Inlines.Add(new Run(string.Format("{0}\n", e.Data.Message)));
//txtActivity.Document.Blocks.Add(p); // problem adds a big space between lines.
}
));
}
}
XAML:
<Grid>
<RichTextBox Name="txtActivity" VerticalScrollBarVisibility="Auto" Margin="12,12,12,41" BorderThickness="2" FontFamily="Consolas">
<RichTextBox.Resources>
<Style TargetType="{x:Type Paragraph}">
<Setter Property="Margin" Value="0"/>
</Style>
</RichTextBox.Resources>
</RichTextBox>
<Button Content="Quit" Height="23" HorizontalAlignment="Left" Margin="628,371,0,0" Name="btnQuit" VerticalAlignment="Top" Width="50" Click="btnQuit_Click" />
</Grid>