-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforeecast.Designer.cs
More file actions
123 lines (117 loc) · 5.71 KB
/
foreecast.Designer.cs
File metadata and controls
123 lines (117 loc) · 5.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
namespace PDC
{
partial class foreecast
{
/// <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 Component 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.picweathericon = new System.Windows.Forms.PictureBox();
this.labDT = new System.Windows.Forms.Label();
this.labmainweather = new System.Windows.Forms.Label();
this.labweatherdescription = new System.Windows.Forms.Label();
this.labdtime = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this.picweathericon)).BeginInit();
this.SuspendLayout();
//
// picweathericon
//
this.picweathericon.BackColor = System.Drawing.Color.Transparent;
this.picweathericon.Location = new System.Drawing.Point(3, 3);
this.picweathericon.Name = "picweathericon";
this.picweathericon.Size = new System.Drawing.Size(100, 97);
this.picweathericon.TabIndex = 0;
this.picweathericon.TabStop = false;
//
// labDT
//
this.labDT.AutoSize = true;
this.labDT.BackColor = System.Drawing.Color.Transparent;
this.labDT.Font = new System.Drawing.Font("Britannic Bold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.labDT.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
this.labDT.Location = new System.Drawing.Point(108, 3);
this.labDT.Name = "labDT";
this.labDT.Size = new System.Drawing.Size(45, 14);
this.labDT.TabIndex = 1;
this.labDT.Text = "Sunday";
//
// labmainweather
//
this.labmainweather.AutoSize = true;
this.labmainweather.BackColor = System.Drawing.Color.Transparent;
this.labmainweather.Font = new System.Drawing.Font("Britannic Bold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.labmainweather.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
this.labmainweather.Location = new System.Drawing.Point(109, 24);
this.labmainweather.Name = "labmainweather";
this.labmainweather.Size = new System.Drawing.Size(34, 14);
this.labmainweather.TabIndex = 2;
this.labmainweather.Text = "Clear";
//
// labweatherdescription
//
this.labweatherdescription.AutoSize = true;
this.labweatherdescription.BackColor = System.Drawing.Color.Transparent;
this.labweatherdescription.Font = new System.Drawing.Font("Britannic Bold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.labweatherdescription.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
this.labweatherdescription.Location = new System.Drawing.Point(108, 49);
this.labweatherdescription.Name = "labweatherdescription";
this.labweatherdescription.Size = new System.Drawing.Size(68, 14);
this.labweatherdescription.TabIndex = 3;
this.labweatherdescription.Text = "Description";
//
// labdtime
//
this.labdtime.AutoSize = true;
this.labdtime.BackColor = System.Drawing.Color.Transparent;
this.labdtime.Font = new System.Drawing.Font("Britannic Bold", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.labdtime.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
this.labdtime.Location = new System.Drawing.Point(109, 70);
this.labdtime.Name = "labdtime";
this.labdtime.Size = new System.Drawing.Size(32, 14);
this.labdtime.TabIndex = 4;
this.labdtime.Text = "Time";
//
// foreecast
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.labdtime);
this.Controls.Add(this.labweatherdescription);
this.Controls.Add(this.labmainweather);
this.Controls.Add(this.labDT);
this.Controls.Add(this.picweathericon);
this.Name = "foreecast";
this.Size = new System.Drawing.Size(449, 103);
this.Load += new System.EventHandler(this.foreecast_Load);
((System.ComponentModel.ISupportInitialize)(this.picweathericon)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
public System.Windows.Forms.PictureBox picweathericon;
public System.Windows.Forms.Label labDT;
public System.Windows.Forms.Label labmainweather;
public System.Windows.Forms.Label labweatherdescription;
public System.Windows.Forms.Label labdtime;
}
}