As part of a startup wizard I am developing, one of the requirements is to be able to skip any stage of the wizard.
I have tried adding a button in between the Next and Cancel buttons as described in another thread but it does not seem to be working in my case.
I have tried adding a button in between the Next and Cancel buttons as described in another thread but it does not seem to be working in my case.
public TestForm() { InitializeComponent(); // add a skip button WizardCommandAreaButtonElement skipButton = new WizardCommandAreaButtonElement { Text = "Skip", MinSize = new Size(radWizard1.NextButton.Size.Width, radWizard1.NextButton.Size.Height), Alignment = ContentAlignment.MiddleRight, Margin = new Padding(4, 0, 4, 0) }; radWizard1.CommandArea.CommandElements.Add(skipButton); }