98 lines
3.8 KiB
C#
98 lines
3.8 KiB
C#
|
|
namespace Tutorial_5
|
|
{
|
|
partial class ForecastDisplay
|
|
{
|
|
/// <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.ConditionLabel = new System.Windows.Forms.Label();
|
|
this.RegisterButton = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.label1.Location = new System.Drawing.Point(100, 9);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(96, 26);
|
|
this.label1.TabIndex = 0;
|
|
this.label1.Text = "Forecast";
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Location = new System.Drawing.Point(14, 106);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(104, 13);
|
|
this.label2.TabIndex = 1;
|
|
this.label2.Text = "Expected Conditions";
|
|
//
|
|
// ConditionLabel
|
|
//
|
|
this.ConditionLabel.AutoSize = true;
|
|
this.ConditionLabel.Location = new System.Drawing.Point(124, 106);
|
|
this.ConditionLabel.Name = "ConditionLabel";
|
|
this.ConditionLabel.Size = new System.Drawing.Size(139, 13);
|
|
this.ConditionLabel.TabIndex = 2;
|
|
this.ConditionLabel.Text = "______________________";
|
|
//
|
|
// RegisterButton
|
|
//
|
|
this.RegisterButton.Location = new System.Drawing.Point(85, 231);
|
|
this.RegisterButton.Name = "RegisterButton";
|
|
this.RegisterButton.Size = new System.Drawing.Size(136, 23);
|
|
this.RegisterButton.TabIndex = 3;
|
|
this.RegisterButton.Text = "Register Observer";
|
|
this.RegisterButton.UseVisualStyleBackColor = true;
|
|
//
|
|
// ForecastDisplay
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(304, 450);
|
|
this.Controls.Add(this.RegisterButton);
|
|
this.Controls.Add(this.ConditionLabel);
|
|
this.Controls.Add(this.label2);
|
|
this.Controls.Add(this.label1);
|
|
this.Name = "ForecastDisplay";
|
|
this.Text = "ForecastDisplay";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.Label label2;
|
|
private System.Windows.Forms.Label ConditionLabel;
|
|
private System.Windows.Forms.Button RegisterButton;
|
|
}
|
|
} |