Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am new in Creating Wizards for Windows Forms Application in C# .Net. So i don't have any idea in wizard creation. Please give me some ideas about creating Multiple wizard.

Regards, ravi

share|improve this question

4 Answers

Lots of ways to do it. Creating a form for each wizard step is possible, but very awkward. And ugly, lots of flickering when the user changes the step. Making each step a UserControl can work, you simply switch them in and out of the form's Controls collection. Or make one of them Visible = true for each step. The UC design tends to get convoluted though, you have to add public properties for each UI item.

The easy and RAD way is to use a TabControl. Works very well in the designer since it allows you to switch tabs at design time and drop controls on each tab. Switching steps is trivial, just change the SelectedIndex property. The only thing non-trivial is to hide the tabs at runtime. Still easy to do by processing a Windows message. Add a new class to your form and paste the code shown below. Compile. Drop the new control from the top of the toolbox onto your form.

using System;
using System.Windows.Forms;

class WizardPages : TabControl {
  protected override void WndProc(ref Message m) {
    // Hide tabs by trapping the TCM_ADJUSTRECT message
    if (m.Msg == 0x1328 && !DesignMode) m.Result = (IntPtr)1;
    else base.WndProc(ref m);
  }
}
share|improve this answer
2  
+51: and so now you can use a tab control, hiding the tabs ...and switch between tab pages with the tab index ...??? I'll be using this ...so much nicer than managing overlapping panels. – IAbstract Sep 10 '11 at 15:43
@Hans Nice answer Hans! I am just courius : does this completely hide tabs so user can not click, or activate them by hittink TAB key or something? – Saeid87 Jul 9 '12 at 9:39
@Sean87 hitting CTRL+TAB actually moves across tab pages – m.bagattini Jul 20 '12 at 13:41
@The souloution for tab is just to set TabStop to false – Saeid87 Jul 20 '12 at 14:07
class WizardPages : TabControl
{
    protected override void WndProc(ref Message m)
    {
        // Hide tabs by trapping the TCM_ADJUSTRECT message
        if (m.Msg == 0x1328 && !DesignMode) m.Result = (IntPtr)1;
        else base.WndProc(ref m);
    }        

    protected override void OnKeyDown(KeyEventArgs ke)
    {
        // Block Ctrl+Tab and Ctrl+Shift+Tab hotkeys
        if (ke.Control && ke.KeyCode == Keys.Tab) 
            return;
        base.OnKeyDown(ke);
    }
}
share|improve this answer

You need to create your own to meet your own preferences. A tip will be for you to create a base form named like "frmWizard" then all your wizard windows will inherit from it. You should put common objects or wizard objects on the base class and modify \ override them on the derived class if needed.

share|improve this answer

My favorite wizard approach is a version of Cristi Potlog's Wizard Control for .NET

Easy to design, control and extend and, most important, easy to understand how it works.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.