Inno Setup - Change size of page name and description labels -


i'm using solution:
display image in top panel of inno setup wizard instead of page title , description

and want set parameters this:

wizardform.wizardsmallbitmapimage.visible := false; wizardform.pagedescriptionlabel.color := clblack; wizardform.pagenamelabel.color := clblack; wizardform.pagedescriptionlabel.font.color := clwhite; wizardform.pagenamelabel.font.color := clwhite; 

but... don't know how make black backgrounds shorter under title , description. can see black strips going on face. possible @ all?

i want this:

look

already have this:

enter image description here

to change labels width use theirs .width property.

procedure initializewizard(); begin   { ... }    wizardform.pagedescriptionlabel.width :=     wizardform.pagedescriptionlabel.width - scalex(120);    wizardform.pagenamelabel.width :=     wizardform.pagenamelabel.width - scalex(120); end; 

enter image description here


or can make labels transparent:
inno setup - transparency under text in page name , description labels


Comments

Popular posts from this blog

angular - Ionic slides - dynamically add slides before and after -

minify - Minimizing css files -

Add a dynamic header in angular 2 http provider -