Creating a .NET Windows Installer – Part 1 - Customizing the User Interface
(Page 10 of 14 )
With the User Interface designer, you can see the windows that the user will see. Windows are listed in the order they will be presented, and sub-grouped by setup stage. You will see two versions of your setup listed, one for the normal user install, and one for the administrative install. You can access the administrative install by using the /a parameter. Usually, the administrative install is used if you need to provide a network setup.
To actually see what a window looks like, you need to actually run the setup, or refer to the MSDN help, which describes the properties and shows the appearance for each one. You cannot debug a setup project like you would a traditional application.
You can customize the user interface of your setup program in a number of ways:
- Modify the options for a window. Each window provides a different set of options. To see what options are available, select the window, and examine the Properties Window.
- Rearrange the order of windows by right-clicking on one and choosing Move Up or Move Down.
- Remove a window from the setup by right-clicking on it and selecting Delete.
- Add a new window pre-defined to the setup by right-clicking on a setup state and selecting Add Dialog.
Next: Abstract >>
More C# Articles
More By Wrox Team