From 99fda86797b436f4ec4f21627b595213940b355e Mon Sep 17 00:00:00 2001 From: wxt Date: Mon, 19 Jan 2026 19:37:41 +0800 Subject: [PATCH] --- 全自动水压检测仪/NormalTemperatureMode.Designer.cs | 2 +- 全自动水压检测仪/Report.cs | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/全自动水压检测仪/NormalTemperatureMode.Designer.cs b/全自动水压检测仪/NormalTemperatureMode.Designer.cs index dc0fa5e..ac3f18f 100644 --- a/全自动水压检测仪/NormalTemperatureMode.Designer.cs +++ b/全自动水压检测仪/NormalTemperatureMode.Designer.cs @@ -1846,7 +1846,7 @@ namespace 全自动水压检测仪 // uiTextBox2 // this.uiTextBox2.Cursor = System.Windows.Forms.Cursors.IBeam; - this.uiTextBox2.Enabled = false; + //this.uiTextBox2.Enabled = false; this.uiTextBox2.Font = new System.Drawing.Font("微软雅黑", 10.5F); this.uiTextBox2.Location = new System.Drawing.Point(141, 127); this.uiTextBox2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); diff --git a/全自动水压检测仪/Report.cs b/全自动水压检测仪/Report.cs index 049d18b..6581d35 100644 --- a/全自动水压检测仪/Report.cs +++ b/全自动水压检测仪/Report.cs @@ -285,9 +285,9 @@ namespace 全自动水压检测仪 { switch (type) { - case 0: - return "低温"; case 1: + return "低温"; + case 0: return "高温"; default: return "未知"; @@ -306,10 +306,10 @@ namespace 全自动水压检测仪 // 根据Type值转换显示文本 switch (typeValue) { - case "0": + case "1": e.Value = "低温"; break; - case "1": + case "0": e.Value = "高温"; break; case "低温":