IOTextControl.Designer.cs
3.4 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
using System.Windows.Forms;
namespace UControl.UC
{
partial class IOTextControl
{
/// <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.picBoxState = new System.Windows.Forms.PictureBox();
this.label1 = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this.picBoxState)).BeginInit();
this.SuspendLayout();
//
// picBoxState
//
this.picBoxState.Dock = System.Windows.Forms.DockStyle.Left;
this.picBoxState.Image = UIControl.Properties.Resource.gray;
this.picBoxState.InitialImage = UIControl.Properties.Resource.gray;
this.picBoxState.Location = new System.Drawing.Point(0, 0);
this.picBoxState.Name = "picBoxState";
this.picBoxState.Size = new System.Drawing.Size(32, 32);
this.picBoxState.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.picBoxState.TabIndex = 1;
this.picBoxState.TabStop = false;
this.picBoxState.Click += new System.EventHandler(this.picBoxState_Click);
this.picBoxState.DoubleClick += new System.EventHandler(this.picBoxState_DoubleClick);
//
// label1
//
this.label1.Dock = System.Windows.Forms.DockStyle.Fill;
this.label1.Location = new System.Drawing.Point(32, 0);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(120, 32);
this.label1.TabIndex = 2;
this.label1.Text = "测试一下";
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.label1.Click += new System.EventHandler(this.label1_Click);
this.label1.DoubleClick += new System.EventHandler(this.label1_DoubleClick);
//
// IOTextControl
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.Control;
this.Controls.Add(this.label1);
this.Controls.Add(this.picBoxState);
this.Name = "IOTextControl";
this.Size = new System.Drawing.Size(152, 32);
this.Load += new System.EventHandler(this.IOTextControl_Load);
((System.ComponentModel.ISupportInitialize)(this.picBoxState)).EndInit();
this.ResumeLayout(false);
}
#endregion
private PictureBox picBoxState;
private Label label1;
}
}