コード例 #1
0
        private void Init_Param()
        {
            cbxMeasureClass.SelectedIndex = DMSDK.DM_GetMeasureClass(tempConnect) - 1;                            //测温档位

            cbxRefeType.SelectedIndex = DMSDK.DM_GetRefeType(tempConnect);                                        //参考温度类型

            RefeTemp = (IntToDecimals(DMSDK.DM_GetRefeTemp(tempConnect)) / 100);                                  //自定义参考温度的值

            tbxAmbientTemp.Text = (IntToDecimals(DMSDK.DM_GetAmbientTemp(tempConnect)) / 100).ToString();         //环境温度

            tbxObjDistance.Text = (IntToDecimals(DMSDK.DM_GetObjDistance(tempConnect)) / 100).ToString();         //环境距离

            tbxAmbientHumidity.Text = (IntToDecimals(DMSDK.DM_GetAmbientHumidity(tempConnect)) / 100).ToString(); //环境湿度

            tbxReviseParam.Text = (IntToDecimals(DMSDK.DM_GetReviseParam(tempConnect)) / 100).ToString();         //修正系数

            tbxReviseTemp.Text = (IntToDecimals(DMSDK.DM_GetReviseTemp(tempConnect)) / 100).ToString();           //修正温度
        }