Esempio n. 1
0
        public cTweak_Project_s000(
            frm_Main base_ref_in,
            cTweak_Project_s000.eMode mode_in,
            dNotifyBase notifyBase_in
            ) : base(
                notifyBase_in,
                1
                )
        {
            Base_ref = base_ref_in;
            mode_    = mode_in;

            MyForm = new frmTweak_Project_s000(
                new cFlowformForm.dNotifyBase(
                    MyForm_notifiedMe
                    ),
                new cFlowformForm.dNotifyBase(
                    MyForm_notifiedMe_aboutNext
                    ),
                mode_in
                );
            MyForm.MdiParent = Base_ref;
            //MyForm.MaximizeBox = false;

//			MyProcess = new PO_Tweak_Project(Base_ref);
        }
Esempio n. 2
0
        public frmTweak_Project_s000(
            cFlowformForm.dNotifyBase notifyBase_in,
            cFlowformForm.dNotifyBase notifyBase_aboutNext_in,
            cTweak_Project_s000.eMode mode_in
            )
        {
            #region Required for Windows Form Designer support...
            InitializeComponent();
            #endregion
            FlowformForm = new cFlowformForm(
                notifyBase_in,
                notifyBase_aboutNext_in
                );
            #region Event safeguard...
            this.btnNext.Click += new System.EventHandler(FlowformForm.btnNext_Click);
            this.Closed        += new System.EventHandler(FlowformForm.FlowformForm_Closed);

            this.btnPath.Click    += new System.EventHandler(this.btnPath_Click);
            this.btnNew.Click     += new System.EventHandler(this.btnNew_Click);
            this.btnEdit.Click    += new System.EventHandler(this.btnEdit_Click);
            this.btnRemove.Click  += new System.EventHandler(this.btnRemove_Click);
            this.btnDefault.Click += new System.EventHandler(this.btnDefault_Click);
            #endregion

            Mode = mode_in;
        }
Esempio n. 3
0
        public frmTweak_Project_s000(
            OGen.Libraries.PresentationLayer.WinForms.FlowForms.FlowformFormNotifyBase notifyBase_in,
            OGen.Libraries.PresentationLayer.WinForms.FlowForms.FlowformFormNotifyBase notifyBase_aboutNext_in,
            cTweak_Project_s000.eMode mode_in
            )
        {
            #region Required for Windows Form Designer support...
            this.InitializeComponent();
            #endregion
            this.flowformform_ = new FlowformForm(
                notifyBase_in,
                notifyBase_aboutNext_in
                );
            #region Event safeguard...
            this.btnNext.Click += new System.EventHandler(this.flowformform_.btnNext_Click);
            this.Closed        += new System.EventHandler(this.flowformform_.FlowformForm_Closed);

            this.btnPath.Click    += new System.EventHandler(this.btnPath_Click);
            this.btnNew.Click     += new System.EventHandler(this.btnNew_Click);
            this.btnEdit.Click    += new System.EventHandler(this.btnEdit_Click);
            this.btnRemove.Click  += new System.EventHandler(this.btnRemove_Click);
            this.btnDefault.Click += new System.EventHandler(this.btnDefault_Click);
            #endregion

            this.Mode = mode_in;
        }
Esempio n. 4
0
 public cTweak_Project_s000(
     frm_Main base_ref_in,
     cTweak_Project_s000.eMode mode_in
     ) : this(
         base_ref_in,
         mode_in,
         null
         )
 {
 }
Esempio n. 5
0
        public cTweak_Project_s000(
            frm_Main base_ref_in,
            cTweak_Project_s000.eMode mode_in,
            OGen.Libraries.PresentationLayer.WinForms.FlowForms.FlowformNotifyBase notifyBase_in
            ) : base(
                notifyBase_in,
                1
                )
        {
            this.Base_ref = base_ref_in;
            this.mode_    = mode_in;

            this.MyForm = new frmTweak_Project_s000(
                this.MyForm_notifiedMe,
                this.MyForm_notifiedMe_aboutNext,
                mode_in
                );
            this.MyForm.MdiParent = this.Base_ref;
            //this.MyForm.MaximizeBox = false;

//			this.MyProcess = new PO_Tweak_Project(Base_ref);
        }