I see the Delphi Forms.

zhaozj2021-02-17  51

Seeing many friends asking questions about the background picture As the Delphi Form does not bring background properties, there is a little tip of the background image:

Add an image component on the form, set its Picture property for the picture you want, (must be a BMP picture), and set it to false;

Add the following code in FormCreate, and FormPaint events:

Form1.brush.canvas.bitmap: = image1.brush.bitmap;

This way, you can add your picture to the form.

Take a look at my programs, it is this:

转载请注明原文地址:https://www.9cbs.com/read-28767.html

New Post(0)