我RichTextBox
在我的代码中使用 a 来显示语法突出显示的代码。现在,在每次击键时,我都必须重新解析所有标记并重新为它们重新着色。但是为 a 中的单个单词着色的唯一方法是逐个WinForm richtextbox
选择这些单词并使用 SelectionFont 为它们着色。
但是,如果用户的输入速度非常快,那么我选择单个单词会导致非常明显的闪烁(所选单词具有 Windows 蓝色背景的东西,这会导致闪烁)。有什么办法可以让我在不选择它们的情况下为单个单词着色(从而导致所选文本周围出现蓝色突出显示)。我尝试SuspendLayout()
在着色期间使用禁用渲染,但这没有帮助。提前致谢!
这是我的代码:
代码:
private void editBox_TextChanged(object sender, EventArgs e) {
syntaxHighlightFromRegex();
}
private void syntaxHighlightFromRegex() {
this.editBox.SuspendLayout();
string REG_EX_KEYWORDS = @"\bSELECT\b|\bFROM\b|\bWHERE\b|\bCONTAINS\b|\bIN\b|\bIS\b|\bLIKE\b|\bNONE\b|\bNOT\b|\bNULL\b|\bOR\b";
matchRExpression(this.editBox, REG_EX_KEYWORDS, KeywordsSyntaxHighlightFont, KeywordSyntaxHighlightFontColor);
}
private void matchRExpression(RichTextBox textBox, string regexpression, Font font, Color color) {
System.Text.RegularExpressions.MatchCollection matches = Regex.Matches(this.editBox.Text, regexpression, RegexOptions.IgnoreCase);
foreach (Match match in matches) {
textBox.Select(match.Index, match.Length);
textBox.SelectionColor = color;
textBox.SelectionFont = font;
}
}
MyRichTextBox 内部(源自 RichTextBox):
public void BeginUpdate() {
SendMessage(this.Handle, WM_SETREDRAW, (IntPtr)0, IntPtr.Zero);
}
public void EndUpdate() {
SendMessage(this.Handle, WM_SETREDRAW, (IntPtr)1, IntPtr.Zero);
}
[DllImport("user32.dll")]
private static extern IntPtr SendMessage(IntPtr hWnd, int msg, IntPtr wp, IntPtr lp);
private const int WM_SETREDRAW = 0x0b;