-
Notifications
You must be signed in to change notification settings - Fork 0
/
DigitalFigure.Designer.cs
125 lines (119 loc) · 5.32 KB
/
DigitalFigure.Designer.cs
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
124
125
namespace Digital_Clock
{
partial class DigitalFigure
{
/// <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.TopA = new System.Windows.Forms.Panel();
this.TOPLEFT = new System.Windows.Forms.Panel();
this.TOPRIGHT = new System.Windows.Forms.Panel();
this.BOTTOMRIGHT = new System.Windows.Forms.Panel();
this.BOTTOMLEFT = new System.Windows.Forms.Panel();
this.BOTTOM = new System.Windows.Forms.Panel();
this.MID = new System.Windows.Forms.Panel();
this.SuspendLayout();
//
// TopA
//
this.TopA.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.TopA.Location = new System.Drawing.Point(23, 3);
this.TopA.Name = "TopA";
this.TopA.Size = new System.Drawing.Size(50, 10);
this.TopA.TabIndex = 0;
//
// TOPLEFT
//
this.TOPLEFT.Location = new System.Drawing.Point(8, 19);
this.TOPLEFT.Name = "TOPLEFT";
this.TOPLEFT.Size = new System.Drawing.Size(10, 48);
this.TOPLEFT.TabIndex = 1;
//
// TOPRIGHT
//
this.TOPRIGHT.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.TOPRIGHT.Location = new System.Drawing.Point(82, 19);
this.TOPRIGHT.Name = "TOPRIGHT";
this.TOPRIGHT.Size = new System.Drawing.Size(10, 48);
this.TOPRIGHT.TabIndex = 2;
//
// BOTTOMRIGHT
//
this.BOTTOMRIGHT.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.BOTTOMRIGHT.Location = new System.Drawing.Point(82, 88);
this.BOTTOMRIGHT.Name = "BOTTOMRIGHT";
this.BOTTOMRIGHT.Size = new System.Drawing.Size(10, 48);
this.BOTTOMRIGHT.TabIndex = 3;
//
// BOTTOMLEFT
//
this.BOTTOMLEFT.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.BOTTOMLEFT.Location = new System.Drawing.Point(8, 88);
this.BOTTOMLEFT.Name = "BOTTOMLEFT";
this.BOTTOMLEFT.Size = new System.Drawing.Size(10, 48);
this.BOTTOMLEFT.TabIndex = 4;
//
// BOTTOM
//
this.BOTTOM.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
this.BOTTOM.Location = new System.Drawing.Point(23, 142);
this.BOTTOM.Name = "BOTTOM";
this.BOTTOM.Size = new System.Drawing.Size(50, 10);
this.BOTTOM.TabIndex = 5;
//
// MID
//
this.MID.Anchor = System.Windows.Forms.AnchorStyles.None;
this.MID.Location = new System.Drawing.Point(23, 70);
this.MID.Name = "MID";
this.MID.Size = new System.Drawing.Size(53, 11);
this.MID.TabIndex = 6;
//
// DigitalFigure
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.Controls.Add(this.MID);
this.Controls.Add(this.BOTTOM);
this.Controls.Add(this.BOTTOMLEFT);
this.Controls.Add(this.BOTTOMRIGHT);
this.Controls.Add(this.TOPRIGHT);
this.Controls.Add(this.TOPLEFT);
this.Controls.Add(this.TopA);
this.MaximumSize = new System.Drawing.Size(100, 155);
this.MinimumSize = new System.Drawing.Size(100, 155);
this.Name = "DigitalFigure";
this.Size = new System.Drawing.Size(100, 155);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Panel TopA;
private System.Windows.Forms.Panel TOPLEFT;
private System.Windows.Forms.Panel TOPRIGHT;
private System.Windows.Forms.Panel BOTTOMRIGHT;
private System.Windows.Forms.Panel BOTTOMLEFT;
private System.Windows.Forms.Panel BOTTOM;
private System.Windows.Forms.Panel MID;
}
}