Background: In a Picturebox, Bitmap images can be drawn on screen by assigning a Bitmap object to Picturebox’s Image property.
Question: What’s the drawing method (GDI+?) used by Picturebox to paint bitmap image on screen?
Thanks in advance.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If by
PictureBoxyou meanSystem.Windows.Forms.PictureBox, it paints with GDI+ as GDI+ is the rendering technology used by all of Windows Forms (WinForms). The GDI+ “wrapper” for WinForms comes fromSystem.Drawing.Windows Presentation Foundation (WPF) on the other hand, uses DirectX to “paint”. WPF does not have a PictureBox control.