修复Designer.cs中控件未实例化的问题
This commit is contained in:
@@ -221,6 +221,9 @@ namespace JoyD.Windows.CS
|
|||||||
this.btnBrushSize15,
|
this.btnBrushSize15,
|
||||||
this.btnBrushSize25,
|
this.btnBrushSize25,
|
||||||
new System.Windows.Forms.ToolStripSeparator(),
|
new System.Windows.Forms.ToolStripSeparator(),
|
||||||
|
this.lblRegionNumber,
|
||||||
|
this.txtRegionNumber,
|
||||||
|
new System.Windows.Forms.ToolStripSeparator(),
|
||||||
this.btnNewTempRegion,
|
this.btnNewTempRegion,
|
||||||
this.btnLoadTempRegion,
|
this.btnLoadTempRegion,
|
||||||
this.btnSaveTempRegion,
|
this.btnSaveTempRegion,
|
||||||
@@ -422,6 +425,21 @@ namespace JoyD.Windows.CS
|
|||||||
this.btnSaveTempDiff.Text = "保存温差图";
|
this.btnSaveTempDiff.Text = "保存温差图";
|
||||||
this.btnSaveTempDiff.ToolTipText = "保存温差图";
|
this.btnSaveTempDiff.ToolTipText = "保存温差图";
|
||||||
//
|
//
|
||||||
|
// lblRegionNumber
|
||||||
|
//
|
||||||
|
this.lblRegionNumber = new System.Windows.Forms.ToolStripLabel();
|
||||||
|
this.lblRegionNumber.Name = "lblRegionNumber";
|
||||||
|
this.lblRegionNumber.Size = new System.Drawing.Size(65, 22);
|
||||||
|
this.lblRegionNumber.Text = "区域编号:";
|
||||||
|
//
|
||||||
|
// txtRegionNumber
|
||||||
|
//
|
||||||
|
this.txtRegionNumber = new System.Windows.Forms.ToolStripTextBox();
|
||||||
|
this.txtRegionNumber.Name = "txtRegionNumber";
|
||||||
|
this.txtRegionNumber.Size = new System.Drawing.Size(60, 25);
|
||||||
|
this.txtRegionNumber.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtRegionNumber_KeyDown);
|
||||||
|
this.txtRegionNumber.TextChanged += new System.EventHandler(this.txtRegionNumber_TextChanged);
|
||||||
|
//
|
||||||
// Setting
|
// Setting
|
||||||
//
|
//
|
||||||
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
|
||||||
@@ -478,5 +496,7 @@ namespace JoyD.Windows.CS
|
|||||||
private System.Windows.Forms.ToolStripButton btnLoadTempDiff;
|
private System.Windows.Forms.ToolStripButton btnLoadTempDiff;
|
||||||
private System.Windows.Forms.ToolStripButton btnSaveTempDiff;
|
private System.Windows.Forms.ToolStripButton btnSaveTempDiff;
|
||||||
private System.Windows.Forms.DataGridView dataGridViewTempDiff;
|
private System.Windows.Forms.DataGridView dataGridViewTempDiff;
|
||||||
|
private System.Windows.Forms.ToolStripLabel lblRegionNumber;
|
||||||
|
private System.Windows.Forms.ToolStripTextBox txtRegionNumber;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user