FormHierachy

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using WindowsFormsApplication3.DataStorge;
using WindowsFormsApplication3.FormPage;

namespace WindowsFormsApplication3.Model
{
    public class FormHierachy
    {
        public string fatherForm;
        public BaseWorkerForm childForm;
        public FormHierachy(string fatherForm, BaseWorkerForm childForm)
        {
            this.fatherForm = fatherForm;
            this.childForm = childForm;
        }
    }
}
posted on 2014-07-22 23:12  rosizel  阅读(102)  评论(0编辑  收藏  举报