Beispiel #1
0
        private void 更改计划单号ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            //填计划单
            FormPlanCodeConfirm frmPlanCodeConfirm = new FormPlanCodeConfirm(this);

            frmPlanCodeConfirm.ShowDialog();

            ProductionTestFactory ptf = ProductionTestFactory.GetProductionTestFactory(this);

            ptf.ChangePlanCodeInTestFlow();
        }
Beispiel #2
0
        private void FormMain_Shown(object sender, EventArgs e)
        {
            //初始化结果
            DisplayResultStatistics(ResultInfo.Pass, ResultInfo.Fail);

            if (ProductionInfo.Type == ProductionInfo.SystemType.GSMMES)
            {
                //填计划单
                FormPlanCodeConfirm frmPlanCodeConfirm = new FormPlanCodeConfirm(this);
                frmPlanCodeConfirm.ShowDialog();
                txtLabelImei.Focus();
            }
        }
Beispiel #3
0
        private void FormMain_Shown(object sender, EventArgs e)
        {
            //初始化结果
            DisplayResultStatistics(ResultInfo.Pass, ResultInfo.Fail);

            //填计划单
            FormPlanCodeConfirm frmPlanCodeConfirm = new FormPlanCodeConfirm(this);
            DialogResult        result             = frmPlanCodeConfirm.ShowDialog();

            if (DialogResult.OK != result)
            {
                Environment.Exit(0);
            }

            //初始化监听实例
            FolderMonitorHelper folderMonitorHelper = new FolderMonitorHelper(this);
        }
Beispiel #4
0
 private void 更改计划单号ToolStripMenuItem_Click(object sender, EventArgs e)
 {
     //填计划单
     FormPlanCodeConfirm frmPlanCodeConfirm = new FormPlanCodeConfirm(this);
     DialogResult        result             = frmPlanCodeConfirm.ShowDialog();
 }