我重写了 OnPaint 方法以在屏幕上绘制椭圆。
protected override void OnPaint(PaintEventArgs e)
{
MessageBox.Show("Paint");
if (debugStarted)
{
int y = rtbLogicCode.PlaceToPoint(new Place(0, debugLine)).Y;
if (rtbLogicCode.GetVisibleState(debugLine).ToString() == "Visible")
{
e.Graphics.FillEllipse(new LinearGradientBrush(new Rectangle(0, y, 15, 15), Color.LightPink, Color.Red, 45), 0, y, 15, 15);
}
base.OnPaint(e);
}
}
private void rtbLogicCode_Scroll(object sender, ScrollEventArgs e)
{
this.Invalidate();
}
滚动事件(在 Richtextbox 上)得到了正确处理,但即使我使表单无效,它也没有调用 OnPaint 函数(没有显示消息框)。
这可能是什么原因?
编辑:我忘了提到在子窗体的初始化函数(使用 MDI 属性作为主窗体的控件添加),我设置了以下样式:
private void LogicCodeInit()
{
this.SetStyle(ControlStyles.DoubleBuffer, true);
this.SetStyle(ControlStyles.ResizeRedraw, true);
this.SetStyle(ControlStyles.AllPaintingInWmPaint, true);
this.SetStyle(ControlStyles.UserPaint, true);
}
Edit2:我也忘了提到子窗体是作为 TabControl 的控件添加的。然后将 TabControl 添加为主窗体的控件。