我有以下绘制矩形的绘制事件(窗体):
void LogicSimulationViewerForm_Paint(object sender, PaintEventArgs e) {
Rectangle rect = new Rectangle(100, 100, 400, 100);
Graphics c = rtbLogicCode.CreateGraphics();
c.DrawRectangle(new Pen(Color.Black, 3), rect);
}
矩形显示片刻,然后立即消失。只有当用户调整表单大小时,矩形才会再次显示。
我该如何解决这个问题?
答案 0 :(得分:6)
请勿使用Control.CreateGraphics()方法,请使用PaintEventArgs.Graphics属性:
void LogicSimulationViewerForm_Paint(object sender, PaintEventArgs e) {
Rectangle rect = new Rectangle(100, 100, 400, 100);
e.Graphics.DrawRectangle(Pens.Black, rect);
}