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