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; } } }
原文地址:http://www.cnblogs.com/rosizel/p/3864247.html