Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

MSI installer, Wix and dialog size value

I've noticed that the articles, tutorials and samples of creating the custom dialogs in Wix always use the same dialog size - Width="370" Height="270"(in the installer units) which corresponds to 494px * 360px for 96DPI. The example is http://blogs.technet.com/b/alexshev/archive/2008/10/16/from-msi-to-wix-part-20-user-interface-required-dialog-boxes.aspx Moreover, a lot of MSI installers use exactly this size for the dialogs. I wonder where this size value came from? Is there any guideline about the installer dialog size?

like image 303
sovo2014 Avatar asked Oct 05 '11 12:10

sovo2014


1 Answers

These standard values for MSI UI dialogs come from Windows SDK, the uisample.msi file.

This size is close to the standard wizard Wizard interface, and MSI “Wizards” mimic Wizard '97 UI. See Wizard '97 sample image, the size of the image is 513 × 397 px.

like image 100
Alexey Ivanov Avatar answered Oct 11 '22 00:10

Alexey Ivanov