📄 formmain.designer.cs
字号:
namespace WindowsApplicationTemperatureAgent
{
partial class FormMain
{
/// <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.components = new System.ComponentModel.Container();
this.button1 = new System.Windows.Forms.Button();
this.dataGridView1 = new System.Windows.Forms.DataGridView();
this.labelTemperature = new System.Windows.Forms.Label();
this.labelTempValue = new System.Windows.Forms.Label();
this.timerMain = new System.Windows.Forms.Timer(this.components);
this.dataSet1 = new System.Data.DataSet();
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
this.SuspendLayout();
//
// button1
//
this.button1.Location = new System.Drawing.Point(95, 506);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(161, 23);
this.button1.TabIndex = 0;
this.button1.Text = "Start and Refresh Db";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// dataGridView1
//
this.dataGridView1.AllowUserToAddRows = false;
this.dataGridView1.AllowUserToDeleteRows = false;
this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGridView1.Location = new System.Drawing.Point(9, 11);
this.dataGridView1.Name = "dataGridView1";
this.dataGridView1.ReadOnly = true;
this.dataGridView1.Size = new System.Drawing.Size(337, 438);
this.dataGridView1.TabIndex = 1;
//
// labelTemperature
//
this.labelTemperature.AutoSize = true;
this.labelTemperature.Location = new System.Drawing.Point(12, 468);
this.labelTemperature.Name = "labelTemperature";
this.labelTemperature.Size = new System.Drawing.Size(113, 13);
this.labelTemperature.TabIndex = 2;
this.labelTemperature.Text = "Current Temperature =";
//
// labelTempValue
//
this.labelTempValue.AutoSize = true;
this.labelTempValue.Location = new System.Drawing.Point(131, 468);
this.labelTempValue.Name = "labelTempValue";
this.labelTempValue.Size = new System.Drawing.Size(16, 13);
this.labelTempValue.TabIndex = 3;
this.labelTempValue.Text = "...";
//
// timerMain
//
this.timerMain.Interval = 2000;
this.timerMain.Tick += new System.EventHandler(this.timerMain_Tick);
//
// dataSet1
//
this.dataSet1.DataSetName = "NewDataSet";
//
// FormMain
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(358, 541);
this.Controls.Add(this.labelTempValue);
this.Controls.Add(this.labelTemperature);
this.Controls.Add(this.dataGridView1);
this.Controls.Add(this.button1);
this.Name = "FormMain";
this.Text = "Temperature Agent UI";
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button button1;
private System.Windows.Forms.DataGridView dataGridView1;
private System.Windows.Forms.Label labelTemperature;
private System.Windows.Forms.Label labelTempValue;
private System.Windows.Forms.Timer timerMain;
private System.Data.DataSet dataSet1;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -