138 lines
5.4 KiB
C#
138 lines
5.4 KiB
C#
|
|
namespace Tutorial_5
|
|
{
|
|
partial class CurrentConditionsDisplay
|
|
{
|
|
|
|
/// <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.label1 = new System.Windows.Forms.Label();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.label3 = new System.Windows.Forms.Label();
|
|
this.PressureLabel = new System.Windows.Forms.Label();
|
|
this.HumidityLabel = new System.Windows.Forms.Label();
|
|
this.TemperatureLabel = new System.Windows.Forms.Label();
|
|
this.RegisterButton = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(174, 59);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(146, 25);
|
|
this.label1.TabIndex = 0;
|
|
this.label1.Text = "Temperature: ";
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Location = new System.Drawing.Point(213, 84);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(107, 25);
|
|
this.label2.TabIndex = 1;
|
|
this.label2.Text = "Humidity: ";
|
|
//
|
|
// label3
|
|
//
|
|
this.label3.AutoSize = true;
|
|
this.label3.Location = new System.Drawing.Point(213, 109);
|
|
this.label3.Name = "label3";
|
|
this.label3.Size = new System.Drawing.Size(110, 25);
|
|
this.label3.TabIndex = 2;
|
|
this.label3.Text = "Pressure: ";
|
|
//
|
|
// PressureLabel
|
|
//
|
|
this.PressureLabel.AutoSize = true;
|
|
this.PressureLabel.Location = new System.Drawing.Point(326, 109);
|
|
this.PressureLabel.Name = "PressureLabel";
|
|
this.PressureLabel.Size = new System.Drawing.Size(110, 25);
|
|
this.PressureLabel.TabIndex = 5;
|
|
this.PressureLabel.Text = "Pressure: ";
|
|
//
|
|
// HumidityLabel
|
|
//
|
|
this.HumidityLabel.AutoSize = true;
|
|
this.HumidityLabel.Location = new System.Drawing.Point(326, 84);
|
|
this.HumidityLabel.Name = "HumidityLabel";
|
|
this.HumidityLabel.Size = new System.Drawing.Size(107, 25);
|
|
this.HumidityLabel.TabIndex = 4;
|
|
this.HumidityLabel.Text = "Humidity: ";
|
|
//
|
|
// TemperatureLabel
|
|
//
|
|
this.TemperatureLabel.AutoSize = true;
|
|
this.TemperatureLabel.Location = new System.Drawing.Point(326, 59);
|
|
this.TemperatureLabel.Name = "TemperatureLabel";
|
|
this.TemperatureLabel.Size = new System.Drawing.Size(146, 25);
|
|
this.TemperatureLabel.TabIndex = 3;
|
|
this.TemperatureLabel.Text = "Temperature: ";
|
|
//
|
|
// RegisterButton
|
|
//
|
|
this.RegisterButton.Location = new System.Drawing.Point(218, 269);
|
|
this.RegisterButton.Name = "RegisterButton";
|
|
this.RegisterButton.Size = new System.Drawing.Size(297, 42);
|
|
this.RegisterButton.TabIndex = 6;
|
|
this.RegisterButton.Text = "Register Component";
|
|
this.RegisterButton.UseVisualStyleBackColor = true;
|
|
this.RegisterButton.Click += new System.EventHandler(this.RegisterButton_Click);
|
|
//
|
|
// CurrentConditionsDisplay
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 25F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(800, 450);
|
|
this.Controls.Add(this.RegisterButton);
|
|
this.Controls.Add(this.PressureLabel);
|
|
this.Controls.Add(this.HumidityLabel);
|
|
this.Controls.Add(this.TemperatureLabel);
|
|
this.Controls.Add(this.label3);
|
|
this.Controls.Add(this.label2);
|
|
this.Controls.Add(this.label1);
|
|
this.Name = "CurrentConditionsDisplay";
|
|
this.Text = "CurrentConditionsDisplay";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.Label label2;
|
|
private System.Windows.Forms.Label label3;
|
|
private System.Windows.Forms.Label PressureLabel;
|
|
private System.Windows.Forms.Label HumidityLabel;
|
|
private System.Windows.Forms.Label TemperatureLabel;
|
|
private System.Windows.Forms.Button RegisterButton;
|
|
}
|
|
} |