private void highlightAllButton_Click(object sender, EventArgs e) { if (!_highlightGroups.ContainsKey(_editor)) { _highlightGroups[_editor] = new HighlightGroup(_editor); } HighlightGroup group = _highlightGroups[_editor]; if (string.IsNullOrEmpty(FindWhat)) { // Clear highlights group.ClearMarkers(); } else { _search.FindWhat = findWhatTextBox.Text; _search.MatchCase = matchCaseCheckBox.Checked; _search.MatchWholeWordOnly = matchWholeWordCheckBox.Checked; bool looped = false; int offset = 0; int count = 0; while (true) { TextRange range = _search.FindNext(offset, false, out looped); if (range == null || looped) { break; } offset = range.Offset + range.Length; count++; var m = new TextMarker(range.Offset, range.Length, TextMarkerType.SolidBlock, Color.LightBlue, Color.Black); group.AddMarker(m); } if (count == 0) { MessageBox.Show("Search text not found."); } else { Close(); } } }
private void highlightAllButton_Click(object sender, EventArgs e) { if (!_highlightGroups.ContainsKey(_editor)) _highlightGroups[_editor] = new HighlightGroup(_editor); HighlightGroup group = _highlightGroups[_editor]; if (string.IsNullOrEmpty(FindWhat)) // Clear highlights group.ClearMarkers(); else { _search.FindWhat = findWhatTextBox.Text; _search.MatchCase = matchCaseCheckBox.Checked; _search.MatchWholeWordOnly = matchWholeWordCheckBox.Checked; bool looped = false; int offset = 0; int count = 0; while (true) { TextRange range = _search.FindNext(offset, false, out looped); if (range == null || looped) break; offset = range.Offset + range.Length; count++; var m = new TextMarker(range.Offset, range.Length, TextMarkerType.SolidBlock, Color.LightBlue, Color.Black); group.AddMarker(m); } if (count == 0) MessageBox.Show("Search text not found."); else Close(); } }