-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathForm1.Designer.cs
135 lines (128 loc) · 5.31 KB
/
Form1.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
126
127
128
129
130
131
132
133
134
namespace Koch
{
partial class mainForm
{
/// <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 Windows Form 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.groupBox1 = new System.Windows.Forms.GroupBox();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.picBox = new System.Windows.Forms.PictureBox();
this.btnDraw = new System.Windows.Forms.Button();
this.LevelCount = new System.Windows.Forms.NumericUpDown();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.picBox)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.LevelCount)).BeginInit();
this.SuspendLayout();
//
// groupBox1
//
this.groupBox1.Controls.Add(this.LevelCount);
this.groupBox1.Controls.Add(this.btnDraw);
this.groupBox1.Dock = System.Windows.Forms.DockStyle.Top;
this.groupBox1.Location = new System.Drawing.Point(0, 0);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(1252, 84);
this.groupBox1.TabIndex = 0;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Options";
//
// groupBox2
//
this.groupBox2.Controls.Add(this.picBox);
this.groupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
this.groupBox2.Location = new System.Drawing.Point(0, 84);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(1252, 651);
this.groupBox2.TabIndex = 1;
this.groupBox2.TabStop = false;
//
// picBox
//
this.picBox.BackColor = System.Drawing.Color.White;
this.picBox.Dock = System.Windows.Forms.DockStyle.Fill;
this.picBox.InitialImage = null;
this.picBox.Location = new System.Drawing.Point(3, 18);
this.picBox.Name = "picBox";
this.picBox.Size = new System.Drawing.Size(1246, 630);
this.picBox.TabIndex = 0;
this.picBox.TabStop = false;
//
// btnDraw
//
this.btnDraw.Location = new System.Drawing.Point(273, 22);
this.btnDraw.Name = "btnDraw";
this.btnDraw.Size = new System.Drawing.Size(973, 49);
this.btnDraw.TabIndex = 0;
this.btnDraw.Text = "Draw";
this.btnDraw.UseVisualStyleBackColor = true;
this.btnDraw.Click += new System.EventHandler(this.btnDraw_Click);
//
// LevelCount
//
this.LevelCount.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.LevelCount.Location = new System.Drawing.Point(12, 33);
this.LevelCount.Maximum = new decimal(new int[] {
10,
0,
0,
0});
this.LevelCount.Minimum = new decimal(new int[] {
2,
0,
0,
0});
this.LevelCount.Name = "LevelCount";
this.LevelCount.ReadOnly = true;
this.LevelCount.Size = new System.Drawing.Size(221, 26);
this.LevelCount.TabIndex = 2;
this.LevelCount.Value = new decimal(new int[] {
2,
0,
0,
0});
//
// mainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1252, 735);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.groupBox1);
this.Name = "mainForm";
this.Text = "The Koch curve";
this.groupBox1.ResumeLayout(false);
this.groupBox2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.picBox)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.LevelCount)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.PictureBox picBox;
private System.Windows.Forms.NumericUpDown LevelCount;
private System.Windows.Forms.Button btnDraw;
}
}