I am using Extended Toolkit to create a wizard in WPF.
I choose PageType = WizardPageType.Blank
.
I want to see an empty page, but I still see the footer area (I hide all buttons).
How can I hide this footer area?
I am using Extended Toolkit to create a wizard in WPF.
I choose PageType = WizardPageType.Blank
.
I want to see an empty page, but I still see the footer area (I hide all buttons).
How can I hide this footer area?
Copyright © 2021 Jogjafile Inc.
There is no property to hide the footer area.
However, you can override the control template of the wizard. FYI, the default style is available on GitHub.
Assuming the namespace
xmlns:xctk="http://schemas.xceed.com/wpf/xaml/toolkit"
, your "very basic" control template could look like this:Place this into
Window.Resources
orApplication.Resources
or wherever you like.