删除tempDiffToolStrip控件

This commit is contained in:
zqm
2025-11-10 09:48:04 +08:00
parent ac3fe69582
commit a5b845c90f

View File

@@ -37,7 +37,6 @@ namespace JoyD.Windows.CS
this.btnSelectColor = new System.Windows.Forms.ToolStripButton(); this.btnSelectColor = new System.Windows.Forms.ToolStripButton();
this.btnDeleteRegion = new System.Windows.Forms.ToolStripButton(); this.btnDeleteRegion = new System.Windows.Forms.ToolStripButton();
this.btnDrawTempDiff = new System.Windows.Forms.ToolStripButton(); this.btnDrawTempDiff = new System.Windows.Forms.ToolStripButton();
this.tempDiffToolStrip = new System.Windows.Forms.ToolStrip();
((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
this.splitContainer.Panel1.SuspendLayout(); this.splitContainer.Panel1.SuspendLayout();
this.splitContainer.Panel2.SuspendLayout(); this.splitContainer.Panel2.SuspendLayout();
@@ -123,7 +122,6 @@ namespace JoyD.Windows.CS
// toolStripContainer.TopToolStripPanel // toolStripContainer.TopToolStripPanel
// //
this.toolStripContainer.TopToolStripPanel.Controls.Add(this.toolStrip); this.toolStripContainer.TopToolStripPanel.Controls.Add(this.toolStrip);
this.toolStripContainer.TopToolStripPanel.Controls.Add(this.tempDiffToolStrip);
// //
// toolStrip // toolStrip
// //
@@ -181,17 +179,7 @@ namespace JoyD.Windows.CS
this.btnDrawTempDiff.Text = "绘制温差图"; this.btnDrawTempDiff.Text = "绘制温差图";
this.btnDrawTempDiff.ToolTipText = "绘制温差图"; this.btnDrawTempDiff.ToolTipText = "绘制温差图";
this.btnDrawTempDiff.Click += new System.EventHandler(this.BtnDrawTempDiff_Click); this.btnDrawTempDiff.Click += new System.EventHandler(this.BtnDrawTempDiff_Click);
//
// tempDiffToolStrip
//
this.tempDiffToolStrip.AllowDrop = true;
this.tempDiffToolStrip.Dock = System.Windows.Forms.DockStyle.None;
this.tempDiffToolStrip.ImageScalingSize = new System.Drawing.Size(20, 20);
this.tempDiffToolStrip.Location = new System.Drawing.Point(4, 25);
this.tempDiffToolStrip.Name = "tempDiffToolStrip";
this.tempDiffToolStrip.Size = new System.Drawing.Size(111, 25);
this.tempDiffToolStrip.TabIndex = 4;
this.tempDiffToolStrip.Text = "温差图例";
// //
// Setting // Setting
// //
@@ -226,7 +214,6 @@ namespace JoyD.Windows.CS
private System.Windows.Forms.GroupBox groupBoxTempDisplay; private System.Windows.Forms.GroupBox groupBoxTempDisplay;
private System.Windows.Forms.PictureBox picBoxTemp; private System.Windows.Forms.PictureBox picBoxTemp;
private System.Windows.Forms.ToolStripContainer toolStripContainer; private System.Windows.Forms.ToolStripContainer toolStripContainer;
private System.Windows.Forms.ToolStrip tempDiffToolStrip;
private System.Windows.Forms.ToolStrip toolStrip; private System.Windows.Forms.ToolStrip toolStrip;
private System.Windows.Forms.ToolStripButton btnDrawRegion; private System.Windows.Forms.ToolStripButton btnDrawRegion;
private System.Windows.Forms.ToolStripButton btnSelectColor; private System.Windows.Forms.ToolStripButton btnSelectColor;