444 lines
25 KiB
C#
444 lines
25 KiB
C#
namespace JoyD.Windows.CS
|
|
{
|
|
partial class Setting
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
this.splitContainer = new System.Windows.Forms.SplitContainer();
|
|
this.groupBoxTempDisplay = new System.Windows.Forms.GroupBox();
|
|
this.picBoxTemp = new System.Windows.Forms.PictureBox();
|
|
this.toolStripContainer = new System.Windows.Forms.ToolStripContainer();
|
|
this.dataGridViewTempDiff = new System.Windows.Forms.DataGridView();
|
|
this.toolStrip = new System.Windows.Forms.ToolStrip();
|
|
this.btnDrawRegion = new System.Windows.Forms.ToolStripButton();
|
|
this.btnSelectColor = new System.Windows.Forms.ToolStripButton();
|
|
this.btnDeleteRegion = new System.Windows.Forms.ToolStripButton();
|
|
this.btnDrawTempDiff = new System.Windows.Forms.ToolStripButton();
|
|
this.btnEraseTempDiff = new System.Windows.Forms.ToolStripButton();
|
|
this.btnAddTempDiff = new System.Windows.Forms.ToolStripButton();
|
|
this.btnDeleteTempDiff = new System.Windows.Forms.ToolStripButton();
|
|
this.btnBrushSize1 = new System.Windows.Forms.ToolStripButton();
|
|
this.btnBrushSize3 = new System.Windows.Forms.ToolStripButton();
|
|
this.btnBrushSize5 = new System.Windows.Forms.ToolStripButton();
|
|
this.btnBrushSize10 = new System.Windows.Forms.ToolStripButton();
|
|
this.btnBrushSize15 = new System.Windows.Forms.ToolStripButton();
|
|
this.btnBrushSize25 = new System.Windows.Forms.ToolStripButton();
|
|
this.txtRegionNumber = new System.Windows.Forms.ToolStripTextBox();
|
|
this.btnNewTempRegion = new System.Windows.Forms.ToolStripButton();
|
|
this.btnLoadTempRegion = new System.Windows.Forms.ToolStripButton();
|
|
this.btnSaveTempRegion = new System.Windows.Forms.ToolStripButton();
|
|
this.btnNewTempDiff = new System.Windows.Forms.ToolStripButton();
|
|
this.btnLoadTempDiff = new System.Windows.Forms.ToolStripButton();
|
|
this.btnSaveTempDiff = new System.Windows.Forms.ToolStripButton();
|
|
((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
|
|
this.splitContainer.Panel1.SuspendLayout();
|
|
this.splitContainer.Panel2.SuspendLayout();
|
|
this.splitContainer.SuspendLayout();
|
|
this.groupBoxTempDisplay.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.picBoxTemp)).BeginInit();
|
|
this.toolStripContainer.ContentPanel.SuspendLayout();
|
|
this.toolStripContainer.TopToolStripPanel.SuspendLayout();
|
|
this.toolStripContainer.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridViewTempDiff)).BeginInit();
|
|
this.toolStrip.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// splitContainer
|
|
//
|
|
this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.splitContainer.Location = new System.Drawing.Point(0, 0);
|
|
this.splitContainer.Name = "splitContainer";
|
|
//
|
|
// splitContainer.Panel1
|
|
//
|
|
this.splitContainer.Panel1.Controls.Add(this.groupBoxTempDisplay);
|
|
//
|
|
// splitContainer.Panel2
|
|
//
|
|
this.splitContainer.Panel2.Controls.Add(this.toolStripContainer);
|
|
this.splitContainer.Size = new System.Drawing.Size(793, 450);
|
|
this.splitContainer.SplitterDistance = 539;
|
|
this.splitContainer.TabIndex = 1;
|
|
//
|
|
// groupBoxTempDisplay
|
|
//
|
|
this.groupBoxTempDisplay.Controls.Add(this.picBoxTemp);
|
|
this.groupBoxTempDisplay.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.groupBoxTempDisplay.Location = new System.Drawing.Point(0, 0);
|
|
this.groupBoxTempDisplay.Name = "groupBoxTempDisplay";
|
|
this.groupBoxTempDisplay.Size = new System.Drawing.Size(539, 450);
|
|
this.groupBoxTempDisplay.TabIndex = 1;
|
|
this.groupBoxTempDisplay.TabStop = false;
|
|
this.groupBoxTempDisplay.Text = "实时温度";
|
|
//
|
|
// picBoxTemp
|
|
//
|
|
this.picBoxTemp.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.picBoxTemp.Location = new System.Drawing.Point(3, 21);
|
|
this.picBoxTemp.Name = "picBoxTemp";
|
|
this.picBoxTemp.Size = new System.Drawing.Size(533, 426);
|
|
this.picBoxTemp.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
|
|
this.picBoxTemp.TabIndex = 0;
|
|
this.picBoxTemp.TabStop = false;
|
|
this.picBoxTemp.SizeChanged += new System.EventHandler(this.PicBoxTemp_SizeChanged);
|
|
this.picBoxTemp.Paint += new System.Windows.Forms.PaintEventHandler(this.PicBoxTemp_Paint);
|
|
this.picBoxTemp.MouseClick += new System.Windows.Forms.MouseEventHandler(this.PicBoxTemp_MouseClick);
|
|
this.picBoxTemp.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.PicBoxTemp_MouseDoubleClick);
|
|
this.picBoxTemp.MouseDown += new System.Windows.Forms.MouseEventHandler(this.PicBoxTemp_MouseDown);
|
|
this.picBoxTemp.MouseMove += new System.Windows.Forms.MouseEventHandler(this.PicBoxTemp_MouseMove);
|
|
this.picBoxTemp.MouseUp += new System.Windows.Forms.MouseEventHandler(this.PicBoxTemp_MouseUp);
|
|
//
|
|
// toolStripContainer
|
|
//
|
|
//
|
|
// toolStripContainer.ContentPanel
|
|
//
|
|
this.toolStripContainer.ContentPanel.AutoScroll = true;
|
|
this.toolStripContainer.ContentPanel.Controls.Add(this.dataGridViewTempDiff);
|
|
this.toolStripContainer.ContentPanel.Size = new System.Drawing.Size(250, 400);
|
|
this.toolStripContainer.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.toolStripContainer.Location = new System.Drawing.Point(0, 0);
|
|
this.toolStripContainer.Name = "toolStripContainer";
|
|
this.toolStripContainer.Size = new System.Drawing.Size(250, 450);
|
|
this.toolStripContainer.TabIndex = 0;
|
|
this.toolStripContainer.Text = "toolStripContainer";
|
|
//
|
|
// toolStripContainer.TopToolStripPanel
|
|
//
|
|
this.toolStripContainer.TopToolStripPanel.Controls.Add(this.toolStrip);
|
|
this.toolStripContainer.TopToolStripPanel.MinimumSize = new System.Drawing.Size(0, 25);
|
|
//
|
|
// dataGridViewTempDiff
|
|
//
|
|
this.dataGridViewTempDiff.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dataGridViewTempDiff.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.dataGridViewTempDiff.Location = new System.Drawing.Point(0, 0);
|
|
this.dataGridViewTempDiff.Name = "dataGridViewTempDiff";
|
|
this.dataGridViewTempDiff.RowHeadersWidth = 25;
|
|
this.dataGridViewTempDiff.RowTemplate.Height = 27;
|
|
this.dataGridViewTempDiff.Size = new System.Drawing.Size(250, 400);
|
|
this.dataGridViewTempDiff.TabIndex = 0;
|
|
//
|
|
// toolStrip
|
|
//
|
|
this.toolStrip.AllowDrop = true;
|
|
this.toolStrip.CanOverflow = false;
|
|
this.toolStrip.Dock = System.Windows.Forms.DockStyle.None;
|
|
this.toolStrip.ImageScalingSize = new System.Drawing.Size(20, 20);
|
|
this.toolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.btnDrawRegion,
|
|
this.btnSelectColor,
|
|
this.btnDeleteRegion,
|
|
this.btnDrawTempDiff,
|
|
this.btnEraseTempDiff,
|
|
this.btnAddTempDiff,
|
|
this.btnDeleteTempDiff,
|
|
this.btnBrushSize1,
|
|
this.btnBrushSize3,
|
|
this.btnBrushSize5,
|
|
this.btnBrushSize10,
|
|
this.btnBrushSize15,
|
|
this.btnBrushSize25,
|
|
this.txtRegionNumber,
|
|
this.btnNewTempRegion,
|
|
this.btnLoadTempRegion,
|
|
this.btnSaveTempRegion,
|
|
this.btnNewTempDiff,
|
|
this.btnLoadTempDiff,
|
|
this.btnSaveTempDiff});
|
|
this.toolStrip.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.Flow;
|
|
this.toolStrip.Location = new System.Drawing.Point(3, 0);
|
|
this.toolStrip.MaximumSize = new System.Drawing.Size(0, 200);
|
|
this.toolStrip.MinimumSize = new System.Drawing.Size(100, 50);
|
|
this.toolStrip.Name = "toolStrip";
|
|
this.toolStrip.Padding = new System.Windows.Forms.Padding(5);
|
|
this.toolStrip.Size = new System.Drawing.Size(247, 50);
|
|
this.toolStrip.TabIndex = 3;
|
|
this.toolStrip.Text = "工具条";
|
|
//
|
|
// btnDrawRegion
|
|
//
|
|
this.btnDrawRegion.CheckOnClick = true;
|
|
this.btnDrawRegion.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
|
this.btnDrawRegion.ImageTransparentColor = System.Drawing.Color.Transparent;
|
|
this.btnDrawRegion.Name = "btnDrawRegion";
|
|
this.btnDrawRegion.Size = new System.Drawing.Size(23, 4);
|
|
this.btnDrawRegion.Text = "画框";
|
|
this.btnDrawRegion.ToolTipText = "绘制温度检测区域(点击开启/关闭)";
|
|
this.btnDrawRegion.Click += new System.EventHandler(this.BtnDrawRegion_Click);
|
|
//
|
|
// btnSelectColor
|
|
//
|
|
this.btnSelectColor.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
|
this.btnSelectColor.ImageTransparentColor = System.Drawing.Color.Transparent;
|
|
this.btnSelectColor.Name = "btnSelectColor";
|
|
this.btnSelectColor.Size = new System.Drawing.Size(23, 4);
|
|
this.btnSelectColor.Text = "选择颜色";
|
|
this.btnSelectColor.ToolTipText = "选择绘制区域的颜色(点击更换颜色)";
|
|
this.btnSelectColor.Click += new System.EventHandler(this.BtnSelectColor_Click);
|
|
//
|
|
// btnDeleteRegion
|
|
//
|
|
this.btnDeleteRegion.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
|
this.btnDeleteRegion.ImageTransparentColor = System.Drawing.Color.Transparent;
|
|
this.btnDeleteRegion.Name = "btnDeleteRegion";
|
|
this.btnDeleteRegion.Size = new System.Drawing.Size(23, 4);
|
|
this.btnDeleteRegion.Text = "删除区域";
|
|
this.btnDeleteRegion.ToolTipText = "删除选中的区域";
|
|
this.btnDeleteRegion.Click += new System.EventHandler(this.BtnDeleteRegion_Click);
|
|
//
|
|
// btnDrawTempDiff
|
|
//
|
|
this.btnDrawTempDiff.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
|
this.btnDrawTempDiff.ImageTransparentColor = System.Drawing.Color.Transparent;
|
|
this.btnDrawTempDiff.Name = "btnDrawTempDiff";
|
|
this.btnDrawTempDiff.Size = new System.Drawing.Size(23, 4);
|
|
this.btnDrawTempDiff.Text = "绘制温差图";
|
|
this.btnDrawTempDiff.ToolTipText = "绘制温差图";
|
|
this.btnDrawTempDiff.Click += new System.EventHandler(this.BtnDrawTempDiff_Click);
|
|
//
|
|
// btnEraseTempDiff
|
|
//
|
|
this.btnEraseTempDiff.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
|
this.btnEraseTempDiff.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|
this.btnEraseTempDiff.Name = "btnEraseTempDiff";
|
|
this.btnEraseTempDiff.Size = new System.Drawing.Size(23, 4);
|
|
this.btnEraseTempDiff.Text = "擦除温差图";
|
|
this.btnEraseTempDiff.ToolTipText = "使用透明色擦除温差图";
|
|
this.btnEraseTempDiff.Click += new System.EventHandler(this.BtnEraseTempDiff_Click);
|
|
//
|
|
// btnAddTempDiff
|
|
//
|
|
this.btnAddTempDiff.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
|
this.btnAddTempDiff.ImageTransparentColor = System.Drawing.Color.Transparent;
|
|
this.btnAddTempDiff.Name = "btnAddTempDiff";
|
|
this.btnAddTempDiff.Size = new System.Drawing.Size(23, 4);
|
|
this.btnAddTempDiff.Text = "添加温差图例";
|
|
this.btnAddTempDiff.ToolTipText = "添加温差图例";
|
|
this.btnAddTempDiff.Click += new System.EventHandler(this.BtnAddTempDiff_Click);
|
|
//
|
|
// btnDeleteTempDiff
|
|
//
|
|
this.btnDeleteTempDiff.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
|
this.btnDeleteTempDiff.ImageTransparentColor = System.Drawing.Color.Transparent;
|
|
this.btnDeleteTempDiff.Name = "btnDeleteTempDiff";
|
|
this.btnDeleteTempDiff.Size = new System.Drawing.Size(23, 4);
|
|
this.btnDeleteTempDiff.Text = "删除温差图例";
|
|
this.btnDeleteTempDiff.ToolTipText = "删除温差图例";
|
|
this.btnDeleteTempDiff.Click += new System.EventHandler(this.BtnDeleteTempDiff_Click);
|
|
//
|
|
// btnBrushSize1
|
|
//
|
|
this.btnBrushSize1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
|
this.btnBrushSize1.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|
this.btnBrushSize1.Name = "btnBrushSize1";
|
|
this.btnBrushSize1.Size = new System.Drawing.Size(23, 4);
|
|
this.btnBrushSize1.Text = "画笔大小1px";
|
|
this.btnBrushSize1.ToolTipText = "选择1像素画笔";
|
|
this.btnBrushSize1.Click += new System.EventHandler(this.BtnBrushSize1_Click);
|
|
//
|
|
// btnBrushSize3
|
|
//
|
|
this.btnBrushSize3.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
|
this.btnBrushSize3.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|
this.btnBrushSize3.Name = "btnBrushSize3";
|
|
this.btnBrushSize3.Size = new System.Drawing.Size(23, 4);
|
|
this.btnBrushSize3.Text = "画笔大小3px";
|
|
this.btnBrushSize3.ToolTipText = "选择3像素画笔";
|
|
this.btnBrushSize3.Click += new System.EventHandler(this.BtnBrushSize3_Click);
|
|
//
|
|
// btnBrushSize5
|
|
//
|
|
this.btnBrushSize5.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
|
this.btnBrushSize5.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|
this.btnBrushSize5.Name = "btnBrushSize5";
|
|
this.btnBrushSize5.Size = new System.Drawing.Size(23, 4);
|
|
this.btnBrushSize5.Text = "画笔大小5px";
|
|
this.btnBrushSize5.ToolTipText = "选择5像素画笔";
|
|
this.btnBrushSize5.Click += new System.EventHandler(this.BtnBrushSize5_Click);
|
|
//
|
|
// btnBrushSize10
|
|
//
|
|
this.btnBrushSize10.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
|
this.btnBrushSize10.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|
this.btnBrushSize10.Name = "btnBrushSize10";
|
|
this.btnBrushSize10.Size = new System.Drawing.Size(23, 4);
|
|
this.btnBrushSize10.Text = "画笔大小10px";
|
|
this.btnBrushSize10.ToolTipText = "选择10像素画笔";
|
|
this.btnBrushSize10.Click += new System.EventHandler(this.BtnBrushSize10_Click);
|
|
//
|
|
// btnBrushSize15
|
|
//
|
|
this.btnBrushSize15.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
|
this.btnBrushSize15.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|
this.btnBrushSize15.Name = "btnBrushSize15";
|
|
this.btnBrushSize15.Size = new System.Drawing.Size(23, 4);
|
|
this.btnBrushSize15.Text = "画笔大小15px";
|
|
this.btnBrushSize15.ToolTipText = "选择15像素画笔";
|
|
this.btnBrushSize15.Click += new System.EventHandler(this.BtnBrushSize15_Click);
|
|
//
|
|
// btnBrushSize25
|
|
//
|
|
this.btnBrushSize25.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
|
this.btnBrushSize25.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|
this.btnBrushSize25.Name = "btnBrushSize25";
|
|
this.btnBrushSize25.Size = new System.Drawing.Size(23, 4);
|
|
this.btnBrushSize25.Text = "画笔大小25px";
|
|
this.btnBrushSize25.ToolTipText = "选择25像素画笔";
|
|
this.btnBrushSize25.Click += new System.EventHandler(this.BtnBrushSize25_Click);
|
|
//
|
|
// txtRegionNumber
|
|
//
|
|
this.txtRegionNumber.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
|
|
this.txtRegionNumber.Margin = new System.Windows.Forms.Padding(0, 2, 3, 2);
|
|
this.txtRegionNumber.Name = "txtRegionNumber";
|
|
this.txtRegionNumber.Size = new System.Drawing.Size(60, 27);
|
|
this.txtRegionNumber.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
|
|
this.txtRegionNumber.TextBoxTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
|
|
this.txtRegionNumber.ToolTipText = "区域编号";
|
|
this.txtRegionNumber.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TxtRegionNumber_KeyDown);
|
|
this.txtRegionNumber.TextChanged += new System.EventHandler(this.TxtRegionNumber_TextChanged);
|
|
//
|
|
// btnNewTempRegion
|
|
//
|
|
this.btnNewTempRegion.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
|
this.btnNewTempRegion.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|
this.btnNewTempRegion.Name = "btnNewTempRegion";
|
|
this.btnNewTempRegion.Size = new System.Drawing.Size(23, 4);
|
|
this.btnNewTempRegion.Text = "新建测温区";
|
|
this.btnNewTempRegion.ToolTipText = "新建测温区";
|
|
this.btnNewTempRegion.Click += new System.EventHandler(this.BtnNewTempRegion_Click);
|
|
//
|
|
// btnLoadTempRegion
|
|
//
|
|
this.btnLoadTempRegion.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
|
this.btnLoadTempRegion.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|
this.btnLoadTempRegion.Name = "btnLoadTempRegion";
|
|
this.btnLoadTempRegion.Size = new System.Drawing.Size(23, 4);
|
|
this.btnLoadTempRegion.Text = "加载测温区";
|
|
this.btnLoadTempRegion.ToolTipText = "加载测温区";
|
|
this.btnLoadTempRegion.Click += new System.EventHandler(this.BtnLoadTempRegion_Click);
|
|
//
|
|
// btnSaveTempRegion
|
|
//
|
|
this.btnSaveTempRegion.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
|
this.btnSaveTempRegion.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|
this.btnSaveTempRegion.Name = "btnSaveTempRegion";
|
|
this.btnSaveTempRegion.Size = new System.Drawing.Size(23, 4);
|
|
this.btnSaveTempRegion.Text = "保存测温区";
|
|
this.btnSaveTempRegion.ToolTipText = "保存测温区";
|
|
this.btnSaveTempRegion.Click += new System.EventHandler(this.BtnSaveTempRegion_Click);
|
|
//
|
|
// btnNewTempDiff
|
|
//
|
|
this.btnNewTempDiff.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
|
this.btnNewTempDiff.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|
this.btnNewTempDiff.Name = "btnNewTempDiff";
|
|
this.btnNewTempDiff.Size = new System.Drawing.Size(23, 4);
|
|
this.btnNewTempDiff.Text = "新建温差图";
|
|
this.btnNewTempDiff.ToolTipText = "新建温差图";
|
|
this.btnNewTempDiff.Click += new System.EventHandler(this.BtnNewTempDiff_Click);
|
|
//
|
|
// btnLoadTempDiff
|
|
//
|
|
this.btnLoadTempDiff.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
|
this.btnLoadTempDiff.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|
this.btnLoadTempDiff.Name = "btnLoadTempDiff";
|
|
this.btnLoadTempDiff.Size = new System.Drawing.Size(23, 4);
|
|
this.btnLoadTempDiff.Text = "加载温差图";
|
|
this.btnLoadTempDiff.ToolTipText = "加载温差图";
|
|
this.btnLoadTempDiff.Click += new System.EventHandler(this.BtnLoadTempDiff_Click);
|
|
//
|
|
// btnSaveTempDiff
|
|
//
|
|
this.btnSaveTempDiff.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
|
this.btnSaveTempDiff.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|
this.btnSaveTempDiff.Name = "btnSaveTempDiff";
|
|
this.btnSaveTempDiff.Size = new System.Drawing.Size(23, 4);
|
|
this.btnSaveTempDiff.Text = "保存温差图";
|
|
this.btnSaveTempDiff.ToolTipText = "保存温差图";
|
|
this.btnSaveTempDiff.Click += new System.EventHandler(this.BtnSaveTempDiff_Click);
|
|
//
|
|
// Setting
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(793, 450);
|
|
this.Controls.Add(this.splitContainer);
|
|
this.Name = "Setting";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
|
|
this.Text = "检测配置";
|
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Setting_FormClosing);
|
|
this.Shown += new System.EventHandler(this.Setting_Shown);
|
|
this.splitContainer.Panel1.ResumeLayout(false);
|
|
this.splitContainer.Panel2.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
|
|
this.splitContainer.ResumeLayout(false);
|
|
this.groupBoxTempDisplay.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)(this.picBoxTemp)).EndInit();
|
|
this.toolStripContainer.ContentPanel.ResumeLayout(false);
|
|
this.toolStripContainer.TopToolStripPanel.ResumeLayout(false);
|
|
this.toolStripContainer.TopToolStripPanel.PerformLayout();
|
|
this.toolStripContainer.ResumeLayout(false);
|
|
this.toolStripContainer.PerformLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridViewTempDiff)).EndInit();
|
|
this.toolStrip.ResumeLayout(false);
|
|
this.toolStrip.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.SplitContainer splitContainer;
|
|
private System.Windows.Forms.GroupBox groupBoxTempDisplay;
|
|
private System.Windows.Forms.PictureBox picBoxTemp;
|
|
private System.Windows.Forms.ToolStripContainer toolStripContainer;
|
|
private System.Windows.Forms.ToolStrip toolStrip;
|
|
private System.Windows.Forms.ToolStripButton btnDrawRegion;
|
|
private System.Windows.Forms.ToolStripButton btnSelectColor;
|
|
private System.Windows.Forms.ToolStripButton btnDeleteRegion;
|
|
private System.Windows.Forms.ToolStripButton btnDrawTempDiff;
|
|
private System.Windows.Forms.ToolStripButton btnAddTempDiff;
|
|
private System.Windows.Forms.ToolStripButton btnDeleteTempDiff;
|
|
private System.Windows.Forms.ToolStripButton btnBrushSize1;
|
|
private System.Windows.Forms.ToolStripButton btnBrushSize3;
|
|
private System.Windows.Forms.ToolStripButton btnBrushSize5;
|
|
private System.Windows.Forms.ToolStripButton btnBrushSize10;
|
|
private System.Windows.Forms.ToolStripButton btnBrushSize15;
|
|
private System.Windows.Forms.ToolStripButton btnBrushSize25;
|
|
private System.Windows.Forms.ToolStripButton btnEraseTempDiff;
|
|
private System.Windows.Forms.ToolStripButton btnNewTempRegion;
|
|
private System.Windows.Forms.ToolStripButton btnLoadTempRegion;
|
|
private System.Windows.Forms.ToolStripButton btnSaveTempRegion;
|
|
private System.Windows.Forms.ToolStripButton btnNewTempDiff;
|
|
private System.Windows.Forms.ToolStripButton btnLoadTempDiff;
|
|
private System.Windows.Forms.ToolStripButton btnSaveTempDiff;
|
|
private System.Windows.Forms.DataGridView dataGridViewTempDiff;
|
|
private System.Windows.Forms.ToolStripTextBox txtRegionNumber;
|
|
}
|
|
} |