Order and save right now!
20% off with the 729824315 dicscount code for Ultimate Pack and any another product for Delphi from Greatis Programming! |
⤷ Use image as backgroung of form
Use standard method of Form component (Brush method). This method has Bitmap method, which allows you to fill background of the form by images.
procedure TForm1.FormCreate(Sender: TObject);
var
MyBitmap: TBitmap;
begin
MyBitmap:=TBitmap.Create;
MyBitmap.LoadFromFile('factory.bmp');
Form1.Brush.Bitmap:=MyBitmap;
end;
-
More for developers