-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainForm.Designer.cs
More file actions
162 lines (157 loc) · 6.85 KB
/
MainForm.Designer.cs
File metadata and controls
162 lines (157 loc) · 6.85 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
namespace CS_GRAPHICS
{
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()
{
tableLayoutMain = new TableLayoutPanel();
tableLayoutRight = new TableLayoutPanel();
pictureBox = new PictureBox();
tableLayoutPanel1 = new TableLayoutPanel();
btnRender = new Button();
tableLayoutLeft = new TableLayoutPanel();
panelEditor = new Panel();
tableLayoutMain.SuspendLayout();
tableLayoutRight.SuspendLayout();
((System.ComponentModel.ISupportInitialize)pictureBox).BeginInit();
tableLayoutPanel1.SuspendLayout();
tableLayoutLeft.SuspendLayout();
SuspendLayout();
//
// tableLayoutMain
//
tableLayoutMain.ColumnCount = 2;
tableLayoutMain.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 278F));
tableLayoutMain.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 100F));
tableLayoutMain.Controls.Add(tableLayoutRight, 1, 0);
tableLayoutMain.Controls.Add(tableLayoutLeft, 0, 0);
tableLayoutMain.Dock = DockStyle.Fill;
tableLayoutMain.Location = new Point(0, 0);
tableLayoutMain.Name = "tableLayoutMain";
tableLayoutMain.RowCount = 1;
tableLayoutMain.RowStyles.Add(new RowStyle(SizeType.Percent, 100F));
tableLayoutMain.Size = new Size(1058, 594);
tableLayoutMain.TabIndex = 0;
//
// tableLayoutRight
//
tableLayoutRight.ColumnCount = 1;
tableLayoutRight.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 100F));
tableLayoutRight.Controls.Add(pictureBox, 0, 1);
tableLayoutRight.Controls.Add(tableLayoutPanel1, 0, 2);
tableLayoutRight.Dock = DockStyle.Fill;
tableLayoutRight.Location = new Point(281, 3);
tableLayoutRight.Name = "tableLayoutRight";
tableLayoutRight.RowCount = 3;
tableLayoutRight.RowStyles.Add(new RowStyle(SizeType.Absolute, 45F));
tableLayoutRight.RowStyles.Add(new RowStyle(SizeType.Percent, 100F));
tableLayoutRight.RowStyles.Add(new RowStyle(SizeType.Absolute, 45F));
tableLayoutRight.Size = new Size(774, 588);
tableLayoutRight.TabIndex = 2;
//
// pictureBox
//
pictureBox.BackColor = SystemColors.ActiveCaption;
pictureBox.Dock = DockStyle.Fill;
pictureBox.Location = new Point(3, 48);
pictureBox.Name = "pictureBox";
pictureBox.Size = new Size(768, 492);
pictureBox.SizeMode = PictureBoxSizeMode.CenterImage;
pictureBox.TabIndex = 0;
pictureBox.TabStop = false;
//
// tableLayoutPanel1
//
tableLayoutPanel1.ColumnCount = 2;
tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 100F));
tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 159F));
tableLayoutPanel1.Controls.Add(btnRender, 1, 0);
tableLayoutPanel1.Dock = DockStyle.Fill;
tableLayoutPanel1.Location = new Point(3, 546);
tableLayoutPanel1.Name = "tableLayoutPanel1";
tableLayoutPanel1.RowCount = 1;
tableLayoutPanel1.RowStyles.Add(new RowStyle(SizeType.Percent, 100F));
tableLayoutPanel1.Size = new Size(768, 39);
tableLayoutPanel1.TabIndex = 1;
//
// btnRender
//
btnRender.Dock = DockStyle.Fill;
btnRender.Location = new Point(612, 3);
btnRender.Name = "btnRender";
btnRender.Size = new Size(153, 33);
btnRender.TabIndex = 1;
btnRender.Text = "RENDER";
btnRender.UseVisualStyleBackColor = true;
btnRender.Click += btnRender_Click;
//
// tableLayoutLeft
//
tableLayoutLeft.ColumnCount = 1;
tableLayoutLeft.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 100F));
tableLayoutLeft.Controls.Add(panelEditor, 0, 1);
tableLayoutLeft.Dock = DockStyle.Fill;
tableLayoutLeft.Location = new Point(3, 3);
tableLayoutLeft.Name = "tableLayoutLeft";
tableLayoutLeft.RowCount = 4;
tableLayoutLeft.RowStyles.Add(new RowStyle(SizeType.Absolute, 45F));
tableLayoutLeft.RowStyles.Add(new RowStyle(SizeType.Percent, 100F));
tableLayoutLeft.RowStyles.Add(new RowStyle(SizeType.Absolute, 181F));
tableLayoutLeft.RowStyles.Add(new RowStyle(SizeType.Absolute, 45F));
tableLayoutLeft.Size = new Size(272, 588);
tableLayoutLeft.TabIndex = 3;
//
// panelEditor
//
panelEditor.Dock = DockStyle.Fill;
panelEditor.Location = new Point(3, 48);
panelEditor.Name = "panelEditor";
panelEditor.Size = new Size(266, 311);
panelEditor.TabIndex = 0;
//
// MainForm
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(1058, 594);
Controls.Add(tableLayoutMain);
Name = "MainForm";
Text = "CS Graphics";
tableLayoutMain.ResumeLayout(false);
tableLayoutRight.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)pictureBox).EndInit();
tableLayoutPanel1.ResumeLayout(false);
tableLayoutLeft.ResumeLayout(false);
ResumeLayout(false);
}
#endregion
private TableLayoutPanel tableLayoutMain;
private PictureBox pictureBox;
private Button btnRender;
private TableLayoutPanel tableLayoutRight;
private TableLayoutPanel tableLayoutPanel1;
private TableLayoutPanel tableLayoutLeft;
private Panel panelEditor;
}
}