ucLamp.Designer.cs
5.15 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
namespace MyControl
{
partial class ucLamp
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region 组件设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ucLamp));
this.picBlue = new System.Windows.Forms.PictureBox();
this.picYellow = new System.Windows.Forms.PictureBox();
this.picGreen = new System.Windows.Forms.PictureBox();
this.picRed = new System.Windows.Forms.PictureBox();
((System.ComponentModel.ISupportInitialize)(this.picBlue)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.picYellow)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.picGreen)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.picRed)).BeginInit();
this.SuspendLayout();
//
// picBlue
//
this.picBlue.Image = ((System.Drawing.Image)(resources.GetObject("picBlue.Image")));
this.picBlue.Location = new System.Drawing.Point(0, 4);
this.picBlue.Name = "picBlue";
this.picBlue.Size = new System.Drawing.Size(16, 10);
this.picBlue.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.picBlue.TabIndex = 0;
this.picBlue.TabStop = false;
this.picBlue.Visible = false;
//
// picYellow
//
this.picYellow.Image = ((System.Drawing.Image)(resources.GetObject("picYellow.Image")));
this.picYellow.Location = new System.Drawing.Point(0, 20);
this.picYellow.Name = "picYellow";
this.picYellow.Size = new System.Drawing.Size(16, 10);
this.picYellow.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.picYellow.TabIndex = 1;
this.picYellow.TabStop = false;
this.picYellow.Visible = false;
//
// picGreen
//
this.picGreen.Image = ((System.Drawing.Image)(resources.GetObject("picGreen.Image")));
this.picGreen.Location = new System.Drawing.Point(0, 34);
this.picGreen.Name = "picGreen";
this.picGreen.Size = new System.Drawing.Size(16, 10);
this.picGreen.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.picGreen.TabIndex = 2;
this.picGreen.TabStop = false;
this.picGreen.Visible = false;
//
// picRed
//
this.picRed.Image = ((System.Drawing.Image)(resources.GetObject("picRed.Image")));
this.picRed.Location = new System.Drawing.Point(0, 52);
this.picRed.Name = "picRed";
this.picRed.Size = new System.Drawing.Size(16, 10);
this.picRed.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.picRed.TabIndex = 3;
this.picRed.TabStop = false;
this.picRed.Visible = false;
//
// ucLamp
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.Controls.Add(this.picRed);
this.Controls.Add(this.picGreen);
this.Controls.Add(this.picYellow);
this.Controls.Add(this.picBlue);
this.DoubleBuffered = true;
this.Margin = new System.Windows.Forms.Padding(0);
this.Name = "ucLamp";
this.Size = new System.Drawing.Size(16, 64);
((System.ComponentModel.ISupportInitialize)(this.picBlue)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.picYellow)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.picGreen)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.picRed)).EndInit();
this.ResumeLayout(false);
}
#endregion
public System.Windows.Forms.PictureBox picBlue;
public System.Windows.Forms.PictureBox picYellow;
public System.Windows.Forms.PictureBox picGreen;
public System.Windows.Forms.PictureBox picRed;
}
}