根据控件文本信息修改Setting.Designer.cs中的控件名称为更有意义的英文名称

This commit is contained in:
zqm
2025-11-06 09:49:57 +08:00
parent fe2b5fc3b3
commit f135a4b17d

View File

@@ -28,47 +28,47 @@
/// </summary> /// </summary>
private void InitializeComponent() private void InitializeComponent()
{ {
this.groupBox1 = new System.Windows.Forms.GroupBox(); this.groupBoxRealTimeTemperature = new System.Windows.Forms.GroupBox();
this.pictureBox1 = new System.Windows.Forms.PictureBox(); this.pictureBoxTemperatureDisplay = new System.Windows.Forms.PictureBox();
this.groupBox1.SuspendLayout(); this.groupBoxRealTimeTemperature.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBoxTemperatureDisplay)).BeginInit();
this.SuspendLayout(); this.SuspendLayout();
// //
// groupBox1 // groupBoxRealTimeTemperature
// //
this.groupBox1.Controls.Add(this.pictureBox1); this.groupBoxRealTimeTemperature.Controls.Add(this.pictureBoxTemperatureDisplay);
this.groupBox1.Location = new System.Drawing.Point(12, 12); this.groupBoxRealTimeTemperature.Location = new System.Drawing.Point(12, 12);
this.groupBox1.Name = "groupBox1"; this.groupBoxRealTimeTemperature.Name = "groupBoxRealTimeTemperature";
this.groupBox1.Size = new System.Drawing.Size(353, 337); this.groupBoxRealTimeTemperature.Size = new System.Drawing.Size(353, 337);
this.groupBox1.TabIndex = 0; this.groupBoxRealTimeTemperature.TabIndex = 0;
this.groupBox1.TabStop = false; this.groupBoxRealTimeTemperature.TabStop = false;
this.groupBox1.Text = "实时温度"; this.groupBoxRealTimeTemperature.Text = "实时温度";
// //
// pictureBox1 // pictureBoxTemperatureDisplay
// //
this.pictureBox1.Location = new System.Drawing.Point(6, 24); this.pictureBoxTemperatureDisplay.Location = new System.Drawing.Point(6, 24);
this.pictureBox1.Name = "pictureBox1"; this.pictureBoxTemperatureDisplay.Name = "pictureBoxTemperatureDisplay";
this.pictureBox1.Size = new System.Drawing.Size(341, 307); this.pictureBoxTemperatureDisplay.Size = new System.Drawing.Size(341, 307);
this.pictureBox1.TabIndex = 0; this.pictureBoxTemperatureDisplay.TabIndex = 0;
this.pictureBox1.TabStop = false; this.pictureBoxTemperatureDisplay.TabStop = false;
// //
// Setting // Setting
// //
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F); this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1191, 450); this.ClientSize = new System.Drawing.Size(1191, 450);
this.Controls.Add(this.groupBox1); this.Controls.Add(this.groupBoxRealTimeTemperature);
this.Name = "Setting"; this.Name = "Setting";
this.Text = "检测配置"; this.Text = "检测配置";
this.groupBox1.ResumeLayout(false); this.groupBoxRealTimeTemperature.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBoxTemperatureDisplay)).EndInit();
this.ResumeLayout(false); this.ResumeLayout(false);
} }
#endregion #endregion
private System.Windows.Forms.GroupBox groupBox1; private System.Windows.Forms.GroupBox groupBoxRealTimeTemperature;
private System.Windows.Forms.PictureBox pictureBox1; private System.Windows.Forms.PictureBox pictureBoxTemperatureDisplay;
} }
} }