Advertisement
TLama

Untitled

Jun 7th, 2013
320
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Delphi 0.27 KB | None | 0 0
  1. [Code]
  2. procedure InitializeWizard;
  3. var
  4.   R: TRect;
  5. begin
  6.   with WizardForm.WizardBitmapImage.Bitmap do
  7.   begin
  8.     Canvas.Brush.Color := clBlack;
  9.     R.Left := 0;
  10.     R.Top := 0;
  11.     R.Right := Width;
  12.     R.Bottom := Height;
  13.     Canvas.FillRect(R);
  14.   end;
  15. end;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement