How to add common header to all pages

Wizard for WPF Forum

Posted 15 years ago by Crile Carvey
Version: 4.5.0484
Avatar
Hello,

Is there something like this I can use to add common content to each page of a wizard?

<apWizard:HeaderContent>
    <StackPanel>
        <MyUserControls.../>
    <StackPanel>
</apWizard:HeaderContent>
Thanks, Crile

Comments (4)

Posted 15 years ago by Actipro Software Support - Cleveland, OH, USA
Avatar
Crile,

No however you could retemplate Wizard with a standard header inside and just use blank page types instead of internal page types. That would probably accomplish this.


Actipro Software Support

Posted 15 years ago by Crile Carvey
Avatar
Thanks - can you point me to an example?

Crile

[Modified at 01/31/2009 10:59 AM]
Posted 15 years ago by Actipro Software Support - Cleveland, OH, USA
Avatar
Crile,

You could even put the common header above the Wizard outside of it like:
<DockPanel>
    <Border DockPanel.Dock="Top">
        (your header here)
    </Border>
    <wizard:Wizard>
        <wizard:WizardPage PagetType="Blank" />
    </wizard:Wizard>
</DockPanel>


Actipro Software Support

Posted 15 years ago by Crile Carvey
Avatar
Hey, that's an idea! Sometimes I love wpf...
The latest build of this product (v24.1.2) was released 2 days ago, which was after the last post in this thread.

Add Comment

Please log in to a validated account to post comments.