|
@@ -163,20 +163,20 @@ namespace HOZProject
|
|
switch (measureType)
|
|
switch (measureType)
|
|
{
|
|
{
|
|
case (int)MeasureMsgManage.measureType.Photo:
|
|
case (int)MeasureMsgManage.measureType.Photo:
|
|
- if (item.Type.ToUpper() == "PT" || item.Type.ToLower() == "FIB")
|
|
|
|
|
|
+ if (item.Type.ToUpper() == "PT" || item.Type.ToUpper() == "FIB")
|
|
{
|
|
{
|
|
continue;
|
|
continue;
|
|
}
|
|
}
|
|
break;
|
|
break;
|
|
case (int)MeasureMsgManage.measureType.Cut:
|
|
case (int)MeasureMsgManage.measureType.Cut:
|
|
- if (item.Type == "PT")
|
|
|
|
|
|
+ if (item.Type.ToUpper() == "PT")
|
|
{
|
|
{
|
|
continue;
|
|
continue;
|
|
}
|
|
}
|
|
break;
|
|
break;
|
|
- case (int)MeasureMsgManage.measureType.PT:
|
|
|
|
|
|
+ //case (int)MeasureMsgManage.measureType.PT:
|
|
|
|
|
|
- break;
|
|
|
|
|
|
+ // break;
|
|
}
|
|
}
|
|
FlowLayoutPanel panelTitle = new FlowLayoutPanel();
|
|
FlowLayoutPanel panelTitle = new FlowLayoutPanel();
|
|
panelTitle.Dock = DockStyle.Top;
|
|
panelTitle.Dock = DockStyle.Top;
|