Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- [Code]
- procedure InitializeWizard;
- var
- R: TRect;
- begin
- with WizardForm.WizardBitmapImage.Bitmap do
- begin
- Canvas.Brush.Color := clBlack;
- R.Left := 0;
- R.Top := 0;
- R.Right := Width;
- R.Bottom := Height;
- Canvas.FillRect(R);
- end;
- end;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement