-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEditorMandelbrot.Designer.cs
More file actions
95 lines (90 loc) · 3.64 KB
/
EditorMandelbrot.Designer.cs
File metadata and controls
95 lines (90 loc) · 3.64 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
namespace CS_GRAPHICS
{
partial class EditorMandelbrot
{
/// <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()
{
tableLayoutMain = new TableLayoutPanel();
lblMaxIter = new Label();
cmbMaxIter = new ComboBox();
tableLayoutMain.SuspendLayout();
SuspendLayout();
//
// tableLayoutMain
//
tableLayoutMain.ColumnCount = 4;
tableLayoutMain.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 50F));
tableLayoutMain.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 115F));
tableLayoutMain.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 113F));
tableLayoutMain.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 50F));
tableLayoutMain.Controls.Add(lblMaxIter, 1, 0);
tableLayoutMain.Controls.Add(cmbMaxIter, 2, 0);
tableLayoutMain.Dock = DockStyle.Fill;
tableLayoutMain.Location = new Point(0, 0);
tableLayoutMain.Name = "tableLayoutMain";
tableLayoutMain.RowCount = 3;
tableLayoutMain.RowStyles.Add(new RowStyle(SizeType.Absolute, 35F));
tableLayoutMain.RowStyles.Add(new RowStyle(SizeType.Absolute, 35F));
tableLayoutMain.RowStyles.Add(new RowStyle(SizeType.Percent, 100F));
tableLayoutMain.RowStyles.Add(new RowStyle(SizeType.Absolute, 20F));
tableLayoutMain.Size = new Size(306, 206);
tableLayoutMain.TabIndex = 0;
//
// lblMaxIter
//
lblMaxIter.Anchor = AnchorStyles.Right;
lblMaxIter.AutoSize = true;
lblMaxIter.Location = new Point(45, 7);
lblMaxIter.Name = "lblMaxIter";
lblMaxIter.Size = new Size(106, 20);
lblMaxIter.TabIndex = 0;
lblMaxIter.Text = "Max Iterations:";
//
// cmbMaxIter
//
cmbMaxIter.Anchor = AnchorStyles.Left | AnchorStyles.Right;
cmbMaxIter.DropDownStyle = ComboBoxStyle.DropDownList;
cmbMaxIter.FormattingEnabled = true;
cmbMaxIter.Location = new Point(157, 3);
cmbMaxIter.Name = "cmbMaxIter";
cmbMaxIter.Size = new Size(107, 28);
cmbMaxIter.TabIndex = 1;
//
// EditorMandelbrot
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
Controls.Add(tableLayoutMain);
Name = "EditorMandelbrot";
Size = new Size(306, 206);
tableLayoutMain.ResumeLayout(false);
tableLayoutMain.PerformLayout();
ResumeLayout(false);
}
#endregion
private TableLayoutPanel tableLayoutMain;
private Label lblMaxIter;
private ComboBox cmbMaxIter;
}
}