-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFormEditString.Designer.cs
133 lines (127 loc) · 6.14 KB
/
FormEditString.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
namespace ModEditor
{
partial class FormEditString
{
/// <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.Windows.Forms.Label label1;
this.cancelButton = new System.Windows.Forms.Button();
this.okButton = new System.Windows.Forms.Button();
this.stringsView = new System.Windows.Forms.DataGridView();
this.btnNew = new System.Windows.Forms.Button();
this.tokenView = new System.Windows.Forms.NumericUpDown();
label1 = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this.stringsView)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.tokenView)).BeginInit();
this.SuspendLayout();
//
// cancelButton
//
this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.cancelButton.Location = new System.Drawing.Point(166, 241);
this.cancelButton.Name = "cancelButton";
this.cancelButton.Size = new System.Drawing.Size(75, 19);
this.cancelButton.TabIndex = 28;
this.cancelButton.Text = " &Cancel";
//
// okButton
//
this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
this.okButton.Location = new System.Drawing.Point(56, 241);
this.okButton.Name = "okButton";
this.okButton.Size = new System.Drawing.Size(75, 19);
this.okButton.TabIndex = 27;
this.okButton.Text = " &OK";
//
// stringsView
//
this.stringsView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.stringsView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.stringsView.Location = new System.Drawing.Point(8, 38);
this.stringsView.MinimumSize = new System.Drawing.Size(0, 40);
this.stringsView.Name = "stringsView";
this.stringsView.Size = new System.Drawing.Size(276, 197);
this.stringsView.TabIndex = 29;
//
// btnNew
//
this.btnNew.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnNew.Location = new System.Drawing.Point(232, 9);
this.btnNew.Name = "btnNew";
this.btnNew.Size = new System.Drawing.Size(48, 20);
this.btnNew.TabIndex = 30;
this.btnNew.Text = "New";
this.btnNew.UseVisualStyleBackColor = true;
//
// tokenView
//
this.tokenView.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.tokenView.Location = new System.Drawing.Point(56, 9);
this.tokenView.Name = "tokenView";
this.tokenView.Size = new System.Drawing.Size(170, 20);
this.tokenView.TabIndex = 31;
this.tokenView.ValueChanged += new System.EventHandler(this.tokenView_ValueChanged);
//
// label1
//
label1.AutoSize = true;
label1.Location = new System.Drawing.Point(12, 13);
label1.Name = "label1";
label1.Size = new System.Drawing.Size(38, 13);
label1.TabIndex = 32;
label1.Text = "Token";
label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// FormEditString
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(292, 263);
this.Controls.Add(label1);
this.Controls.Add(this.tokenView);
this.Controls.Add(this.btnNew);
this.Controls.Add(this.stringsView);
this.Controls.Add(this.cancelButton);
this.Controls.Add(this.okButton);
this.MinimumSize = new System.Drawing.Size(260, 200);
this.Name = "FormEditString";
this.Text = "Edit String";
((System.ComponentModel.ISupportInitialize)(this.stringsView)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.tokenView)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button cancelButton;
private System.Windows.Forms.Button okButton;
private System.Windows.Forms.DataGridView stringsView;
private System.Windows.Forms.Button btnNew;
private System.Windows.Forms.NumericUpDown tokenView;
}
}