-
Notifications
You must be signed in to change notification settings - Fork 16
Picture box
FellippeHeitor edited this page Mar 22, 2017
·
11 revisions
A PictureBox control can be used to display a static image file on a form. Alternatively, you can use a PictureBox control as a drawing surface.
A PictureBox control will mantain a loaded image's aspect ratio if resized by the corner handles.
You can draw directly onto a PictureBox's surface using QB64's drawing commands:
BeginDraw PictureBox1
'Drawing code here
EndDraw PictureBox1