Customizing GAX Wizard Pages (part 1)

There are some parts that you could want to customize in the wizard page, unfortunately most of this part are not exposed. GAX wizard was implemented over the Visual Studio Wizard Framework and each page inherit from its WizardPage base class and the only thing that you can change is the logo through the Logo property and regarding the title you just can change the text, but no any other property.

So here you've a trick of how you could customize any Custom Wizard Page. Basically the idea is get the header panel that is docked at the top of each page, which contains the picture and label controls to change its properties in order to get something like following...

image

image

In the following snippet you can see how to get each control and how to change its properties. Note that you can access the controls collection after the InitializeComponent() was called and get each control through its Id.

image

2 Comments

Comments have been disabled for this content.