-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRenameEntityForm.Designer.cs
117 lines (111 loc) · 5.55 KB
/
RenameEntityForm.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
namespace CaravelEditor
{
partial class RenameEntityForm
{
/// <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(RenameEntityForm));
this.nameTextBox = new System.Windows.Forms.TextBox();
this.nameLabel = new System.Windows.Forms.Label();
this.renameButton = new System.Windows.Forms.Button();
this.cancelButton = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// nameTextBox
//
this.nameTextBox.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
this.nameTextBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.nameTextBox.ForeColor = System.Drawing.SystemColors.Control;
this.nameTextBox.Location = new System.Drawing.Point(150, 52);
this.nameTextBox.Margin = new System.Windows.Forms.Padding(6, 6, 6, 6);
this.nameTextBox.Name = "nameTextBox";
this.nameTextBox.Size = new System.Drawing.Size(442, 31);
this.nameTextBox.TabIndex = 4;
this.nameTextBox.TextChanged += new System.EventHandler(this.NameChanged);
//
// nameLabel
//
this.nameLabel.AutoSize = true;
this.nameLabel.Location = new System.Drawing.Point(62, 56);
this.nameLabel.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
this.nameLabel.Name = "nameLabel";
this.nameLabel.Size = new System.Drawing.Size(74, 25);
this.nameLabel.TabIndex = 5;
this.nameLabel.Text = "Name:";
//
// renameButton
//
this.renameButton.BackColor = System.Drawing.SystemColors.ControlDarkDark;
this.renameButton.DialogResult = System.Windows.Forms.DialogResult.OK;
this.renameButton.FlatAppearance.BorderColor = System.Drawing.SystemColors.ControlDark;
this.renameButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.renameButton.Location = new System.Drawing.Point(68, 137);
this.renameButton.Margin = new System.Windows.Forms.Padding(6, 6, 6, 6);
this.renameButton.Name = "renameButton";
this.renameButton.Size = new System.Drawing.Size(250, 44);
this.renameButton.TabIndex = 6;
this.renameButton.Text = "Rename";
this.renameButton.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(344, 137);
this.cancelButton.Margin = new System.Windows.Forms.Padding(6, 6, 6, 6);
this.cancelButton.Name = "cancelButton";
this.cancelButton.Size = new System.Drawing.Size(250, 44);
this.cancelButton.TabIndex = 7;
this.cancelButton.Text = "Cancel";
this.cancelButton.UseVisualStyleBackColor = false;
//
// RenameEntityForm
//
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(652, 229);
this.Controls.Add(this.cancelButton);
this.Controls.Add(this.renameButton);
this.Controls.Add(this.nameLabel);
this.Controls.Add(this.nameTextBox);
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, 6, 6, 6);
this.Name = "RenameEntityForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Rename Entity";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox nameTextBox;
private System.Windows.Forms.Label nameLabel;
private System.Windows.Forms.Button renameButton;
private System.Windows.Forms.Button cancelButton;
}
}