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;
To reproduce: - Add RadWizard to a form. - Set the AcceptButton property like this: this.AcceptButton = this.radWizard1.NextButton; - You will notice that nothing happens when the enter key is pressed. Workaround: - Use the following PreviewKeyDown event handler: void radWizard1_PreviewKeyDown(object sender, PreviewKeyDownEventArgs e) { if (e.KeyCode == Keys.Enter) { this.radWizard1.NextButton.PerformClick(); } }
If you focus the first text box and press Tab key, the expected behavior is that the second text box is focused. However, pressing Tab key will navigate through the next/previous buttons. If you add a second control on the form along with the UserControl that hosts the wizard, the Tab key will behave as expected and you can navigate through the controls in the wizard page.
Steps to reproduce: 1.Create new WinForms project. 2.Place a RadWizard on Form1. 3.Select the WelcomePage and assign a WelcomeImage 4.Save the changes and close Form1. 5.Reopen Form1, you get an exception, see attached screen shot
The RadWizard control should handle the Tab key to navigate through its command buttons.
The layout of the control's CommandArea is not correct when RadWizard is use in a MDI child form.
The layout of RadWizard CommandArea is incorrect after minimizing and restoring the form containing the control.
To reproduce: Add a RadWizard to a form, add a coded ui project, add a test, try to access the buttons.
The RadWizard control should handle the Tab key to navigate through all controls on its page and its command buttons.
FIX. RadWizard - the hover and pressed styles for the focused button in the Windows7 theme are missing
IMPROVE. RadWizard - setting the Visibility property for the CancelButton on the control should affect all pages, not just the current one