Beispiel #1
0
        //建立吸光度与时间关系
        public static void ProcessAbsLinear(TimeCourseInfo T, AssayProjectParamInfo A, out float[] AbsList, out float[] TimeList, string VT)
        {
            AbsList  = ProcessAbsList(T, A, VT);
            TimeList = new float[AbsList.Count()];

            for (int i = 0; i < AbsList.Count(); i++)
            {
                TimeList[i] = RunConfigureUtility.GetTimeCourseTime(i) / 60;
            }
        }
Beispiel #2
0
        private void btnSever_Click(object sender, EventArgs e)
        {
            string Completed = chkCompletedSampleTest.Checked.ToString();
            string Starting  = chkOngoingSampleTes.Checked.ToString();
            string NoStart   = chkInitialSampleTest.Checked.ToString();

            Dictionary <string, string> dctValue = new Dictionary <string, string>();

            dctValue.Add("Completed", Completed);
            dctValue.Add("Starting", Starting);
            dctValue.Add("NoStart", NoStart);

            RunConfigureUtility.UpdateConfigureInfo("CheckSampleTaskState", dctValue);

            this.Close();
        }