|
@@ -57,15 +57,19 @@ namespace HOZProject
|
|
|
fileStream.Close();
|
|
|
fileStream.Dispose();
|
|
|
//流程内容
|
|
|
- double Work_Voltage = args.Picture_Information.Work_Voltage/1000;
|
|
|
+ double Work_Voltage = args.Picture_Information.Work_Voltage / 1000;
|
|
|
double Magnification = args.Picture_Information.Magnification;
|
|
|
- double Work_Distance = args.Picture_Information.Work_Distance*1000;
|
|
|
+ double Work_Distance = args.Picture_Information.Work_Distance * 1000;
|
|
|
string semParaContent = "电压:" + Work_Voltage.ToString("f1") + "KV";
|
|
|
semParaContent += " 放大倍数:" + Magnification + "X";
|
|
|
semParaContent += " 工作距离:" + Work_Distance.ToString("f1") + "mm";
|
|
|
formHOZ.lblFlowContent.Text = semParaContent;
|
|
|
}
|
|
|
}
|
|
|
+ else
|
|
|
+ {
|
|
|
+ formHOZ.lblFlowContent.Text = string.Empty ;
|
|
|
+ }
|
|
|
//修改切孔中流程状态
|
|
|
ChageCutHoleFlowNodeState(formHOZ, args);
|
|
|
}
|