Head first C # Chinese Version chapter 13th controls and graphics page608

Source: Internet
Author: User

Dual buffering can make the animation smoother


Go Back To The image zoom box and play the trackbar
. Did you notice a lot of flashes when dragging the slider? This is because each time the slider moves a little,
paint
the event processor draws white rectangles and images. When your eyes see white rectangles and images that alternate many times every second, they will feel blinking. This is terrible
...
This can be avoided by using a technology called double buffering. This means that each frame is drawn to an invisible
bitmap
up (a" buffer "), it is displayed only after a frame is drawn. The following is how to use this method
bitmap
method:




This is a typical useGraphics
To draw the image to the formProgram:



 


You can addBitmap
To act as a buffer in the program. In this way, when the form or control needs to be re-painted, the image can be drawn to the buffer rather than the form.



 


Now a frame has been drawn to an invisibleBitmap
On, we can use
Drawimageunscaled
() Method
Bitmap
Copy back to the form
Graphics
Go. Replication is completed at one time, which avoids flickering.



Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.