RSK
RSK

Reputation: 2211

How to customise the dialogs that a user sees when she runs my windows forms setup project?

I have to create a setup project for my windows form application and I want to change the default computer picture(it contains a monitor placed on a CPU along with a keyboard, mouse, CD and has purple background) which appears in the top right corner of all of the installation screens. I want to replace it with bmp image which we have created. What is the procedure to do this? Please note that I am working on .Net 2.0, visual studio 2005. Thanks.

Upvotes: 0

Views: 276

Answers (1)

Hans Passant
Hans Passant

Reputation: 941217

With the Setup project selected, use View + Editor and click "User Interface". You'll see a tree view of the dialogs that the user sees when she runs the installer. Standard steps are Welcome, Installation Folder, Confirm Installation, Progress and Finished.

Select one of those steps and look in the Properties window. Note the BannerBitmap property. Change it from (Default) to your own custom bitmap.

Upvotes: 2

Related Questions