在背景上画还是不画?
我使用 GDI+ 在自定义面板上绘制绘图。有些人认为: 替代文本 http://lh6.ggpht.com/_1TPOP7DzY1E/ TB8jS3jn1tI/AAAAAAADP8/YQmKuj_AwvY/s800/Capture1.gif
现在,我可以重写 2 个方法:OnPaint() 和 OnPaintBackground()。
假设我在背景中绘制网格并在 OnPaint 中绘制图形,或者在背景中绘制文本并在 Paint 中绘制线条。
将工作分配在Background 和Paint 之间或者在OnPaint 中绘制所有内容是否更优化?
附注
顺便问一下,秒表可以确定吗?我的意思是不知道什么时候开始/停止它......
I draw a drawing on a custom panel using GDI+. Somethink like:
alt text http://lh6.ggpht.com/_1TPOP7DzY1E/TB8jS3jn1tI/AAAAAAAADP8/YQmKuj_AwvY/s800/Capture1.gif
Now, I can override 2 methods: OnPaint() and OnPaintBackground().
Say I draw the grid in background and the graph in OnPaint, or draw the texts in background and lines in Paint.
Is it more optimal to divide the work between Background and Paint or to draw everything in OnPaint?
PS.
By the way, is it possible Stopwatch
to determine it? I mean don't know when to start/stop it...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为如果不使用双缓冲,两种方法都可以。如果使用双缓冲,请在
OnPaint
中执行所有操作。I think either method is ok, if you do not use double-buffering. If using double-buffering, do everything in
OnPaint
.