我正在查看此处发布的代码,特别是覆盖方法中的 SyntaxRichTextBox.cs WndProc
。
这只是代码中的错字吗?什么是 Windows 味精0x00f
?他们的意思是0x0f
为了WM_PAINT
?捕获该消息的代码的作者是什么?
代码:
protected override void WndProc(ref System.Windows.Forms.Message m)
{
if (m.Msg == 0x00f)
{
if (m_bPaint)
base.WndProc(ref m);
else
m.Result = IntPtr.Zero;
}
else
base.WndProc(ref m);
}