-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSettingsForm.Designer.cs
More file actions
123 lines (118 loc) · 4.83 KB
/
Copy pathSettingsForm.Designer.cs
File metadata and controls
123 lines (118 loc) · 4.83 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
namespace Unilight
{
partial class SettingsForm
{
/// <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()
{
tableLayoutPanel1 = new TableLayoutPanel();
btnSave = new Button();
btnCancel = new Button();
tableLayoutMain = new TableLayoutPanel();
editorRaytracer = new Unilight.Editors.EditorRaytracer();
tableLayoutPanel1.SuspendLayout();
tableLayoutMain.SuspendLayout();
SuspendLayout();
//
// tableLayoutPanel1
//
tableLayoutPanel1.ColumnCount = 3;
tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 100F));
tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 120F));
tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 113F));
tableLayoutPanel1.Controls.Add(btnSave, 1, 0);
tableLayoutPanel1.Controls.Add(btnCancel, 2, 0);
tableLayoutPanel1.Dock = DockStyle.Fill;
tableLayoutPanel1.Location = new Point(3, 403);
tableLayoutPanel1.Name = "tableLayoutPanel1";
tableLayoutPanel1.RowCount = 1;
tableLayoutPanel1.RowStyles.Add(new RowStyle(SizeType.Percent, 100F));
tableLayoutPanel1.Size = new Size(794, 44);
tableLayoutPanel1.TabIndex = 0;
//
// btnSave
//
btnSave.Anchor = AnchorStyles.Left | AnchorStyles.Right;
btnSave.Location = new Point(564, 5);
btnSave.Name = "btnSave";
btnSave.Size = new Size(114, 34);
btnSave.TabIndex = 0;
btnSave.Text = "SAVE";
btnSave.UseVisualStyleBackColor = true;
btnSave.Click += btnSave_Click;
//
// btnCancel
//
btnCancel.Anchor = AnchorStyles.Left | AnchorStyles.Right;
btnCancel.Location = new Point(684, 5);
btnCancel.Name = "btnCancel";
btnCancel.Size = new Size(107, 34);
btnCancel.TabIndex = 1;
btnCancel.Text = "CANCEL";
btnCancel.UseVisualStyleBackColor = true;
btnCancel.Click += btnCancel_Click;
//
// tableLayoutMain
//
tableLayoutMain.ColumnCount = 1;
tableLayoutMain.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 100F));
tableLayoutMain.Controls.Add(tableLayoutPanel1, 0, 1);
tableLayoutMain.Controls.Add(editorRaytracer, 0, 0);
tableLayoutMain.Dock = DockStyle.Fill;
tableLayoutMain.Location = new Point(0, 0);
tableLayoutMain.Name = "tableLayoutMain";
tableLayoutMain.RowCount = 2;
tableLayoutMain.RowStyles.Add(new RowStyle(SizeType.Percent, 100F));
tableLayoutMain.RowStyles.Add(new RowStyle(SizeType.Absolute, 50F));
tableLayoutMain.Size = new Size(800, 450);
tableLayoutMain.TabIndex = 1;
//
// editorRaytracer
//
editorRaytracer.Dock = DockStyle.Fill;
editorRaytracer.Location = new Point(3, 3);
editorRaytracer.Name = "editorRaytracer";
editorRaytracer.Raytracer = null;
editorRaytracer.Size = new Size(794, 394);
editorRaytracer.TabIndex = 1;
//
// SettingsForm
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(800, 450);
Controls.Add(tableLayoutMain);
Name = "SettingsForm";
Text = "SettingsForm";
tableLayoutPanel1.ResumeLayout(false);
tableLayoutMain.ResumeLayout(false);
ResumeLayout(false);
}
#endregion
private TableLayoutPanel tableLayoutPanel1;
private TableLayoutPanel tableLayoutMain;
private Button btnSave;
private Button btnCancel;
private Editors.EditorRaytracer editorRaytracer;
}
}