首页 > 代码库 > WizardEntry

WizardEntry

using System;using System.Collections.Generic;using System.Linq;using System.Text;using WindowsFormsApplication3.FormPage.UserMode;namespace WindowsFormsApplication3.Model{    public class WizardEntry    {        public BaseWizardForm fatherForm;        public BaseWizardForm form;        public List<BaseWizardForm> childForms;        public WizardEntry(BaseWizardForm form, BaseWizardForm fatherForm,List<BaseWizardForm> childForms) {            this.form = form;            this.fatherForm = fatherForm;            this.childForms = childForms;        }    }}