ReelDataControl.Designer.cs
6.2 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 OnlineStore.XLRStore
{
partial class ReelDataControl
{
/// <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()
{
this.lblText = new System.Windows.Forms.Label();
this.lblReelInfo = new System.Windows.Forms.Label();
this.panName = new System.Windows.Forms.Panel();
this.linkClear = new System.Windows.Forms.LinkLabel();
this.panName.SuspendLayout();
this.SuspendLayout();
//
// lblText
//
this.lblText.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.lblText.BackColor = System.Drawing.Color.Transparent;
this.lblText.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.lblText.ForeColor = System.Drawing.Color.Black;
this.lblText.Location = new System.Drawing.Point(-2, 2);
this.lblText.Name = "lblText";
this.lblText.Size = new System.Drawing.Size(154, 19);
this.lblText.TabIndex = 1;
this.lblText.Text = "暂存区物料信息";
this.lblText.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.lblText.MouseEnter += new System.EventHandler(this.lblText_MouseEnter);
this.lblText.MouseLeave += new System.EventHandler(this.lblText_MouseLeave);
//
// lblReelInfo
//
this.lblReelInfo.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.lblReelInfo.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.lblReelInfo.ForeColor = System.Drawing.Color.Black;
this.lblReelInfo.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.lblReelInfo.Location = new System.Drawing.Point(0, 31);
this.lblReelInfo.Name = "lblReelInfo";
this.lblReelInfo.Size = new System.Drawing.Size(248, 89);
this.lblReelInfo.TabIndex = 3;
this.lblReelInfo.Text = "暂无物料";
this.lblReelInfo.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.lblReelInfo.MouseEnter += new System.EventHandler(this.lblText_MouseEnter);
this.lblReelInfo.MouseLeave += new System.EventHandler(this.lblText_MouseLeave);
//
// panName
//
this.panName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.panName.BackColor = System.Drawing.Color.Transparent;
this.panName.Controls.Add(this.linkClear);
this.panName.Controls.Add(this.lblText);
this.panName.Location = new System.Drawing.Point(1, 1);
this.panName.Name = "panName";
this.panName.Size = new System.Drawing.Size(248, 28);
this.panName.TabIndex = 7;
this.panName.MouseEnter += new System.EventHandler(this.lblText_MouseEnter);
this.panName.MouseLeave += new System.EventHandler(this.lblText_MouseLeave);
//
// linkClear
//
this.linkClear.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.linkClear.AutoSize = true;
this.linkClear.Location = new System.Drawing.Point(158, 9);
this.linkClear.Name = "linkClear";
this.linkClear.Size = new System.Drawing.Size(77, 12);
this.linkClear.TabIndex = 2;
this.linkClear.TabStop = true;
this.linkClear.Text = "清除料盘信息";
this.linkClear.MouseEnter += new System.EventHandler(this.lblText_MouseEnter);
this.linkClear.MouseLeave += new System.EventHandler(this.lblText_MouseLeave);
//
// ReelDataControl
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.BackColor = System.Drawing.Color.White;
this.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.Controls.Add(this.panName);
this.Controls.Add(this.lblReelInfo);
this.Name = "ReelDataControl";
this.Size = new System.Drawing.Size(250, 121);
this.Load += new System.EventHandler(this.EquipControl_Load);
this.MouseEnter += new System.EventHandler(this.ReelDataControl_MouseEnter);
this.MouseLeave += new System.EventHandler(this.ReelDataControl_MouseLeave);
this.panName.ResumeLayout(false);
this.panName.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Label lblText;
private System.Windows.Forms.Label lblReelInfo;
private System.Windows.Forms.Panel panName;
public System.Windows.Forms.LinkLabel linkClear;
}
}