Create a .NET 5 project and add a RadWizard. You can't navigate the pages to place controls on any page other than page 1.
Workaround: in the Designer.cs InitializeComponents method you can set the Selected page and rebuild the project:
this.radWizard1.SelectedPage = wizardPage1;