关于onpaint 函数调用的问题
我现在想在 别的函数里
调用onpaint函数如何做呢
------解决方案--------------------应该使用委托,
------解决方案--------------------不是很理解你的意思.
PaintEventArgs _PaintEventArgs = new PaintEventArgs(this.CreateGraphics(), this.Bounds);
OnPaint(_PaintEventArgs);
或则
OnPaint(null);
------解决方案--------------------C# code
this.Invalidate();
------解决方案--------------------
顶
------解决方案--------------------
顶