The client area WizardFormitself is visible only under the bottom beveled line. Higher than WizardForm.InnerPage, and individual / current wizard pages in the middle, contained in a closed one InnerNotebook.
This places the image to the left of the pages:
MuteImage := TBitmapImage.Create(WizardForm.InnerPage);
MuteImage.Parent := WizardForm.InnerPage;
MuteImage.Left := 0;
{ Uses the top of the wizard pages to line up }
MuteImage.Top := WizardForm.SelectDirPage.Parent.Top;
While this puts it at the bottom:
MuteImage := TBitmapImage.Create(WizardForm);
MuteImage.Parent := WizardForm;
MuteImage.Left := 0;
{ Below the inner page }
MuteImage.Top := WizardForm.InnerPage.Height;
source
share