我真的不知道我应该从哪里开始。
我有一个RichTextBox
的WPF应用程序,其中有一个使用FlowDocument
的文本加载,这取决于用户的选择。
我需要一种方法,用户可以从中将单词键入TextBox
,如果找到该单词的每个实例,则会在相邻的RichTextBox
中突出显示该单词。 http://kentb.blogspot.com/2009/06/search-and-highlight-text-in-arbitrary.html这个想法很完美,但我对如何使用RichTextBox
将其应用于我的应用程序毫无头绪。
提前谢谢!
答案 0 :(得分:3)
您是否尝试过使用RegularExpressions?
类似的东西:
private void searchButton_Click(object sender, EventArgs e)
{
//Select all text and bring it back to default color values so you
//can make a new search selection
richTextBox1.SelectAll();
richTextBox1.SelectionColor = System.Drawing.Colors.Black;
//Deselect all text to ready selections
richTextBox1.DeselectAll();
//Create a MatchList variable and initialize it to all matches
//within the RichTextBox. Add a using statement of
//System.Text.RegularExpressions
Color evenColor = Color.Red;
Color oddColor = Color.Blue;
MatchCollection matches = Regex.Matches(richTextBox1.Text, searchTextBox.Text);
//Apply color to all matching text
int matchCount = 0;
foreach (Match match in matches)
{
richTextBox1.Select(match.Index, match.Length);
//richTextBox1.SelectionColor = System.Drawing.Color.Red;
richTextBox1.SelectionColor =
matchCount++ % 2 == 0 ? evenColor : oddColor;
}
}
只要您的盒子中不需要同时使用多种颜色,此方法就可以使用。有了一些额外的逻辑,你也可以把它合并,我确定。
编辑:在WPF中不起作用。保持WinForms的发布。
答案 1 :(得分:0)
我用FlowDocument
做到了。此示例列出了具有该颜色背景的颜色。我使用FlowDocumentReader
来显示FlowDocument
,但我认为RichTextBox
也会显示FlowDocument
。它可能看起来有点复杂,但是标记实际文本的方式不如突出显示我必须使用Windows.Form RichTextBox
返回的位置。这是我用来决定什么颜色突出显示最好的代码。
docFlowDocument = new FlowDocument();
System.Windows.Media.Brush defaultBrush = System.Windows.Media.Brushes.White;
docFlowDocument.Background = defaultBrush;
System.Windows.Media.Brush curBrush = defaultBrush;
Paragraph p = new Paragraph();
Run r = new Run();
r.Background = curBrush;
#region nullDocument
if (String.IsNullOrEmpty(DocText))
{
r.Foreground = System.Windows.Media.Brushes.Red;
r.Text = "No Text";
p.Inlines.Add(r);
docFlowDocument.Blocks.Add(p);
List<string> colorNames = (from pc in typeof(Brushes).GetProperties()
select pc.Name).ToList();
//Debug.WriteLine(colorNames.Count.ToString());
//Debug.WriteLine(colorNames[0]);
Type brushesType = typeof(Brushes);
System.Reflection.MemberInfo[] membersinfo = brushesType.GetMembers();
System.Reflection.PropertyInfo[] properties = brushesType.GetProperties();
for (int i = 0; i < properties.Length; i++)
{
r = new Run();
r.Background = (Brush)properties[i].GetValue(null, null);
r.Text = colorNames[i];
p.Inlines.Add(r);
p.Inlines.Add(new LineBreak());
}
docFlowDocument.Blocks.Add(p);
docFlowDocumentFinishedLastRun = true;
return docFlowDocument;
}
#endregion // nullDocument