public void InitWizard(WizardState ws)
        {
            wstate = ws;

            if (ws.set == null)
                InitializeSet();
        }
        /*
         * 1: PartList
         * 2: PartList + STRING IDs
         * 3: PartList + STRING IDs -> InteractionSet
         * 4:
         */
        public IMWizardDlg()
        {
            InitializeComponent();

            stepLabels = new Label[]{
                labelStepPP,
                labelStepStringID,
                labelStepMapInteractions,
                labelStepExport
            };

            wizardState = new WizardState();
            wizardState.partList = new PartList();

            wizardPages = new UserControl[] {
                new WizardEnterPartsPage(),
                new WizardStringIDPage(),
                new WizardMapInteractions(),
                new WizardExport()
            };

            SetStep(0);
        }
 public void InitWizard(WizardState state)
 {
     wstate = state;
     UpdateView();
 }
 public void InitWizard(WizardState ws)
 {
     wstate = ws;
     partListControl.PartList = ws.partList;
 }
 public void InitWizard(WizardState ws)
 {
     wstate = ws;
 }