关于onpaint 函数调用的有关问题

关于onpaint 函数调用的问题我现在想在 别的函数里调用onpaint函数如何做呢[解决办法]应该使用委托,[解决

关于onpaint 函数调用的问题
我现在想在 别的函数里
调用onpaint函数如何做呢

[解决办法]
应该使用委托,

[解决办法]
不是很理解你的意思.

PaintEventArgs _PaintEventArgs = new PaintEventArgs(this.CreateGraphics(), this.Bounds);
OnPaint(_PaintEventArgs);

或则 

OnPaint(null); 



[解决办法]

C# code
this.Invalidate();
[解决办法]

[解决办法]