-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAddCollisionShapeForm.Designer.cs
119 lines (113 loc) · 5.52 KB
/
AddCollisionShapeForm.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
namespace CaravelEditor
{
partial class AddCollisionShapeForm
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AddCollisionShapeForm));
this.comboBox = new System.Windows.Forms.ComboBox();
this.label = new System.Windows.Forms.Label();
this.addButton = new System.Windows.Forms.Button();
this.cancelButton = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// comboBox
//
this.comboBox.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
this.comboBox.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.comboBox.ForeColor = System.Drawing.SystemColors.Control;
this.comboBox.FormattingEnabled = true;
this.comboBox.Location = new System.Drawing.Point(194, 42);
this.comboBox.Margin = new System.Windows.Forms.Padding(6);
this.comboBox.Name = "comboBox";
this.comboBox.Size = new System.Drawing.Size(238, 33);
this.comboBox.TabIndex = 0;
//
// label
//
this.label.AutoSize = true;
this.label.BackColor = System.Drawing.SystemColors.ControlDarkDark;
this.label.Location = new System.Drawing.Point(46, 48);
this.label.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
this.label.Name = "label";
this.label.Size = new System.Drawing.Size(134, 25);
this.label.TabIndex = 1;
this.label.Text = "Shape Type:";
this.label.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// addButton
//
this.addButton.BackColor = System.Drawing.SystemColors.ControlDarkDark;
this.addButton.DialogResult = System.Windows.Forms.DialogResult.OK;
this.addButton.FlatAppearance.BorderColor = System.Drawing.SystemColors.ControlDark;
this.addButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.addButton.Location = new System.Drawing.Point(52, 117);
this.addButton.Margin = new System.Windows.Forms.Padding(6);
this.addButton.Name = "addButton";
this.addButton.Size = new System.Drawing.Size(194, 44);
this.addButton.TabIndex = 2;
this.addButton.Text = "Add";
this.addButton.UseVisualStyleBackColor = false;
//
// cancelButton
//
this.cancelButton.BackColor = System.Drawing.SystemColors.ControlDarkDark;
this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.cancelButton.FlatAppearance.BorderColor = System.Drawing.SystemColors.ControlDark;
this.cancelButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.cancelButton.Location = new System.Drawing.Point(258, 117);
this.cancelButton.Margin = new System.Windows.Forms.Padding(6);
this.cancelButton.Name = "cancelButton";
this.cancelButton.Size = new System.Drawing.Size(178, 44);
this.cancelButton.TabIndex = 3;
this.cancelButton.Text = "Cancel";
this.cancelButton.UseVisualStyleBackColor = false;
//
// AddCollisionShapeForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(192F, 192F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.BackColor = System.Drawing.SystemColors.ControlDarkDark;
this.ClientSize = new System.Drawing.Size(476, 188);
this.Controls.Add(this.cancelButton);
this.Controls.Add(this.addButton);
this.Controls.Add(this.label);
this.Controls.Add(this.comboBox);
this.ForeColor = System.Drawing.SystemColors.Control;
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Margin = new System.Windows.Forms.Padding(6);
this.Name = "AddCollisionShapeForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Add Collision Shape";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ComboBox comboBox;
private System.Windows.Forms.Label label;
private System.Windows.Forms.Button addButton;
private System.Windows.Forms.Button cancelButton;
}
}