Beispiel #1
0
        private RefreshType RefreshType;//委托方法

        public ProblemTypeForm(IProblemEditFormReq iProblemEditFormReq, RefreshType RefreshType)
        {
            InitializeComponent();

            this.iProblemEditFormReq = iProblemEditFormReq;
            this.iProblemTypeFormReq = ImplProblemTypeFormReq.NewInstance();
            this.RefreshType         = RefreshType;
            this.initView();
            this.initData();
        }
Beispiel #2
0
        public ProblemEidtForm(ProblemWithTypeName CurSelProblemWithTN, IKnowltAndProblemFormReq IKnowltAndProblemFormReq, EditProblem editProblem)
        {
            InitializeComponent();
            this.IKnowltAndProblemFormReq = IKnowltAndProblemFormReq;
            this.CurSelProblemWithTN      = CurSelProblemWithTN;
            this.editProblem         = editProblem;
            this.iProblemEditFormReq = ImplProblemEditFormReq.NewInstance();

            this.initData();
            this.initView();
        }
Beispiel #3
0
        public ProblemEidtForm(string knowlID, IKnowltAndProblemFormReq IKnowltAndProblemFormReq, AddProblem addProblem)
        {
            InitializeComponent();

            this.IKnowltAndProblemFormReq = IKnowltAndProblemFormReq;
            this.currentSelKnowlID        = knowlID;
            this.addProblem          = addProblem;
            this.iProblemEditFormReq = ImplProblemEditFormReq.NewInstance();

            this.initData();
            this.initView();
        }