From d837271cee6e69864898963cc0c3bd694b732d9f Mon Sep 17 00:00:00 2001
From: C3031 <shitiangui@lanpucloud.cn>
Date: 星期一, 05 一月 2026 12:30:13 +0800
Subject: [PATCH] 新增了历史数据查询界面优化了了历史数据查询界面操作逻辑Merge branch 'master' of http://lanpucloud.cn:1111/r/~zhengyabo/LB_TyreAppearanceInspectionSoftware

---
 LB_SmartVision/Forms/Pages/HistoricalDataPage/HistoricalDataEditPage.Designer.cs |   19 ++++++++++++-------
 1 files changed, 12 insertions(+), 7 deletions(-)

diff --git a/LB_SmartVision/Forms/Pages/HistoricalDataPage/HistoricalDataEditPage.Designer.cs b/LB_SmartVision/Forms/Pages/HistoricalDataPage/HistoricalDataEditPage.Designer.cs
index be5221e..dffa1cc 100644
--- a/LB_SmartVision/Forms/Pages/HistoricalDataPage/HistoricalDataEditPage.Designer.cs
+++ b/LB_SmartVision/Forms/Pages/HistoricalDataPage/HistoricalDataEditPage.Designer.cs
@@ -106,7 +106,6 @@
             tableLayoutPanel2.RowStyles.Add(new RowStyle(SizeType.Percent, 50F));
             tableLayoutPanel2.Size = new Size(854, 500);
             tableLayoutPanel2.TabIndex = 0;
-            tableLayoutPanel2.Paint += tableLayoutPanel2_Paint;
             // 
             // tableLayoutPanel3
             // 
@@ -120,8 +119,8 @@
             tableLayoutPanel3.RowCount = 3;
             tableLayoutPanel3.RowStyles.Add(new RowStyle(SizeType.Absolute, 45F));
             tableLayoutPanel3.RowStyles.Add(new RowStyle(SizeType.Absolute, 90F));
-            tableLayoutPanel3.RowStyles.Add(new RowStyle(SizeType.Absolute, 200F));
-            tableLayoutPanel3.Size = new Size(334, 305);
+            tableLayoutPanel3.RowStyles.Add(new RowStyle(SizeType.Absolute, 45F));
+            tableLayoutPanel3.Size = new Size(334, 180);
             tableLayoutPanel3.TabIndex = 0;
             // 
             // tableLayoutPanelSN
@@ -135,7 +134,7 @@
             tableLayoutPanelSN.Name = "tableLayoutPanelSN";
             tableLayoutPanelSN.RowCount = 1;
             tableLayoutPanelSN.RowStyles.Add(new RowStyle(SizeType.Percent, 100F));
-            tableLayoutPanelSN.Size = new Size(328, 45);
+            tableLayoutPanelSN.Size = new Size(328, 39);
             tableLayoutPanelSN.TabIndex = 7;
             // 
             // labelSN
@@ -145,7 +144,7 @@
             labelSN.ForeColor = SystemColors.Control;
             labelSN.Location = new Point(3, 0);
             labelSN.Name = "labelSN";
-            labelSN.Size = new Size(129, 45);
+            labelSN.Size = new Size(129, 39);
             labelSN.TabIndex = 6;
             labelSN.Text = "SN鍙�";
             labelSN.TextAlign = ContentAlignment.MiddleLeft;
@@ -195,6 +194,7 @@
             comboBoxSearchBasis.Name = "comboBoxSearchBasis";
             comboBoxSearchBasis.Size = new Size(187, 28);
             comboBoxSearchBasis.TabIndex = 1;
+            comboBoxSearchBasis.SelectedIndexChanged += comboBoxSearchBasis_SelectedIndexChanged;
             // 
             // contentContainer
             // 
@@ -227,6 +227,8 @@
             dateTimePickerEnd.Dock = DockStyle.Fill;
             dateTimePickerEnd.Location = new Point(138, 50);
             dateTimePickerEnd.Margin = new Padding(3, 5, 3, 3);
+            dateTimePickerEnd.MaxDate = new DateTime(2100, 1, 1, 0, 0, 0, 0);
+            dateTimePickerEnd.MinDate = new DateTime(2020, 1, 1, 0, 0, 0, 0);
             dateTimePickerEnd.Name = "dateTimePickerEnd";
             dateTimePickerEnd.Size = new Size(187, 30);
             dateTimePickerEnd.TabIndex = 9;
@@ -236,9 +238,12 @@
             dateTimePickerStart.Dock = DockStyle.Fill;
             dateTimePickerStart.Location = new Point(138, 5);
             dateTimePickerStart.Margin = new Padding(3, 5, 3, 3);
+            dateTimePickerStart.MaxDate = new DateTime(2100, 1, 1, 0, 0, 0, 0);
+            dateTimePickerStart.MinDate = new DateTime(2020, 1, 1, 0, 0, 0, 0);
             dateTimePickerStart.Name = "dateTimePickerStart";
             dateTimePickerStart.Size = new Size(187, 30);
             dateTimePickerStart.TabIndex = 8;
+            dateTimePickerStart.ValueChanged += dateTimePickerStart_ValueChanged;
             // 
             // labelEndTime
             // 
@@ -362,11 +367,11 @@
         private ReaLTaiizor.Controls.HopeButton hopeButton2;
         private TableLayoutPanel tableLayoutPanel5;
         private Label labelSearchBasis;
-        private ComboBox comboBoxSearchBasis;
-        private Panel contentContainer;
         private TableLayoutPanel tableLayoutPanelSN;
         private Label labelSN;
         private TextBox textBoxSN;
+        private ComboBox comboBoxSearchBasis;
+        private Panel contentContainer;
         private TableLayoutPanel tableLayoutPanelTimeSearch;
         private DateTimePicker dateTimePickerEnd;
         private DateTimePicker dateTimePickerStart;

--
Gitblit v1.9.3