Sfall-ScriptEditor

Форк
0
/
RegisterScript.Designer.cs 
380 строк · 20.7 Кб
1

2
namespace ScriptEditor {
3
    partial class RegisterScript {
4
        /// <summary>
5
        /// Required designer variable.
6
        /// </summary>
7
        private System.ComponentModel.IContainer components = null;
8

9
        /// <summary>
10
        /// Clean up any resources being used.
11
        /// </summary>
12
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
13
        protected override void Dispose(bool disposing) {
14
            if(disposing && (components != null)) {
15
                components.Dispose();
16
            }
17
            base.Dispose(disposing);
18
        }
19

20
        #region Windows Form Designer generated code
21

22
        /// <summary>
23
        /// Required method for Designer support - do not modify
24
        /// the contents of this method with the code editor.
25
        /// </summary>
26
        private void InitializeComponent() {
27
            this.components = new System.ComponentModel.Container();
28
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
29
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
30
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
31
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RegisterScript));
32
            this.dgvScripts = new ScriptEditor.TextEditorUI.DataGridViewEx();
33
            this.EntryCol = new System.Windows.Forms.DataGridViewTextBoxColumn();
34
            this.cLine = new System.Windows.Forms.DataGridViewButtonColumn();
35
            this.cScript = new System.Windows.Forms.DataGridViewTextBoxColumn();
36
            this.cDescription = new System.Windows.Forms.DataGridViewTextBoxColumn();
37
            this.cVars = new System.Windows.Forms.DataGridViewTextBoxColumn();
38
            this.cName = new System.Windows.Forms.DataGridViewTextBoxColumn();
39
            this.groupBox = new System.Windows.Forms.GroupBox();
40
            this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
41
            this.imageList1 = new System.Windows.Forms.ImageList(this.components);
42
            this.DefinetextBox = new System.Windows.Forms.TextBox();
43
            this.AllowCheckBox = new System.Windows.Forms.CheckBox();
44
            this.label2 = new System.Windows.Forms.Label();
45
            this.toolStrip1 = new System.Windows.Forms.ToolStrip();
46
            this.Save_button = new System.Windows.Forms.ToolStripButton();
47
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
48
            this.Addbutton = new System.Windows.Forms.ToolStripButton();
49
            this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
50
            this.Delbutton = new System.Windows.Forms.ToolStripButton();
51
            this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
52
            this.Upbutton = new System.Windows.Forms.ToolStripButton();
53
            this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
54
            this.Downbutton = new System.Windows.Forms.ToolStripButton();
55
            this.FindtextBox = new System.Windows.Forms.ToolStripTextBox();
56
            this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
57
            ((System.ComponentModel.ISupportInitialize)(this.dgvScripts)).BeginInit();
58
            this.groupBox.SuspendLayout();
59
            this.toolStrip1.SuspendLayout();
60
            this.SuspendLayout();
61
            // 
62
            // dgvScripts
63
            // 
64
            this.dgvScripts.AllowUserToAddRows = false;
65
            this.dgvScripts.AllowUserToDeleteRows = false;
66
            this.dgvScripts.AllowUserToResizeRows = false;
67
            this.dgvScripts.BackgroundColor = System.Drawing.SystemColors.MenuBar;
68
            this.dgvScripts.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
69
            this.dgvScripts.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.Raised;
70
            dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.TopLeft;
71
            dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
72
            dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
73
            dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
74
            dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
75
            dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
76
            dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
77
            this.dgvScripts.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
78
            this.dgvScripts.ColumnHeadersHeight = 24;
79
            this.dgvScripts.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
80
            this.dgvScripts.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
81
            this.EntryCol,
82
            this.cLine,
83
            this.cScript,
84
            this.cDescription,
85
            this.cVars,
86
            this.cName});
87
            this.dgvScripts.Dock = System.Windows.Forms.DockStyle.Fill;
88
            this.dgvScripts.Location = new System.Drawing.Point(6, 19);
89
            this.dgvScripts.MultiSelect = false;
90
            this.dgvScripts.Name = "dgvScripts";
91
            this.dgvScripts.RowHeadersVisible = false;
92
            this.dgvScripts.RowHeadersWidth = 30;
93
            this.dgvScripts.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
94
            this.dgvScripts.Size = new System.Drawing.Size(724, 453);
95
            this.dgvScripts.TabIndex = 0;
96
            this.dgvScripts.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvScripts_CellClick);
97
            this.dgvScripts.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvScripts_CellContentClick);
98
            // 
99
            // EntryCol
100
            // 
101
            this.EntryCol.HeaderText = "Entry";
102
            this.EntryCol.Name = "EntryCol";
103
            this.EntryCol.ReadOnly = true;
104
            this.EntryCol.Resizable = System.Windows.Forms.DataGridViewTriState.False;
105
            this.EntryCol.Visible = false;
106
            this.EntryCol.Width = 10;
107
            // 
108
            // cLine
109
            // 
110
            this.cLine.HeaderText = "Script #";
111
            this.cLine.Name = "cLine";
112
            this.cLine.Resizable = System.Windows.Forms.DataGridViewTriState.False;
113
            this.cLine.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
114
            this.cLine.ToolTipText = "Script ID";
115
            this.cLine.Width = 50;
116
            // 
117
            // cScript
118
            // 
119
            dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
120
            this.cScript.DefaultCellStyle = dataGridViewCellStyle2;
121
            this.cScript.HeaderText = "Script File";
122
            this.cScript.Name = "cScript";
123
            this.cScript.Resizable = System.Windows.Forms.DataGridViewTriState.False;
124
            this.cScript.Width = 90;
125
            // 
126
            // cDescription
127
            // 
128
            this.cDescription.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
129
            this.cDescription.FillWeight = 70F;
130
            this.cDescription.HeaderText = "Descriptions";
131
            this.cDescription.Name = "cDescription";
132
            this.cDescription.Resizable = System.Windows.Forms.DataGridViewTriState.True;
133
            // 
134
            // cVars
135
            // 
136
            dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
137
            this.cVars.DefaultCellStyle = dataGridViewCellStyle3;
138
            this.cVars.HeaderText = "LVars:";
139
            this.cVars.Name = "cVars";
140
            this.cVars.Resizable = System.Windows.Forms.DataGridViewTriState.False;
141
            this.cVars.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
142
            this.cVars.ToolTipText = "Local Variables";
143
            this.cVars.Width = 40;
144
            // 
145
            // cName
146
            // 
147
            this.cName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
148
            this.cName.FillWeight = 30F;
149
            this.cName.HeaderText = "Script Name";
150
            this.cName.Name = "cName";
151
            this.cName.Resizable = System.Windows.Forms.DataGridViewTriState.True;
152
            this.cName.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
153
            this.cName.ToolTipText = "Script game name in scrname.msg";
154
            // 
155
            // groupBox
156
            // 
157
            this.groupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
158
                        | System.Windows.Forms.AnchorStyles.Left)
159
                        | System.Windows.Forms.AnchorStyles.Right)));
160
            this.groupBox.Controls.Add(this.dgvScripts);
161
            this.groupBox.Location = new System.Drawing.Point(3, 54);
162
            this.groupBox.Name = "groupBox";
163
            this.groupBox.Padding = new System.Windows.Forms.Padding(6);
164
            this.groupBox.Size = new System.Drawing.Size(736, 478);
165
            this.groupBox.TabIndex = 1;
166
            this.groupBox.TabStop = false;
167
            this.groupBox.Text = "Scripts List";
168
            // 
169
            // imageList1
170
            // 
171
            this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
172
            this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
173
            this.imageList1.Images.SetKeyName(0, "RegisterReady.png");
174
            this.imageList1.Images.SetKeyName(1, "RegisterNeed.png");
175
            // 
176
            // DefinetextBox
177
            // 
178
            this.DefinetextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
179
                        | System.Windows.Forms.AnchorStyles.Right)));
180
            this.DefinetextBox.Enabled = false;
181
            this.DefinetextBox.Location = new System.Drawing.Point(185, 29);
182
            this.DefinetextBox.Name = "DefinetextBox";
183
            this.DefinetextBox.Size = new System.Drawing.Size(497, 20);
184
            this.DefinetextBox.TabIndex = 7;
185
            // 
186
            // AllowCheckBox
187
            // 
188
            this.AllowCheckBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
189
            this.AllowCheckBox.AutoSize = true;
190
            this.AllowCheckBox.Enabled = false;
191
            this.AllowCheckBox.ForeColor = System.Drawing.Color.Firebrick;
192
            this.AllowCheckBox.Location = new System.Drawing.Point(688, 30);
193
            this.AllowCheckBox.Name = "AllowCheckBox";
194
            this.AllowCheckBox.Size = new System.Drawing.Size(51, 17);
195
            this.AllowCheckBox.TabIndex = 8;
196
            this.AllowCheckBox.Text = "Allow";
197
            this.AllowCheckBox.UseVisualStyleBackColor = true;
198
            // 
199
            // label2
200
            // 
201
            this.label2.AutoSize = true;
202
            this.label2.ForeColor = System.Drawing.Color.RoyalBlue;
203
            this.label2.Location = new System.Drawing.Point(6, 32);
204
            this.label2.Name = "label2";
205
            this.label2.Size = new System.Drawing.Size(173, 13);
206
            this.label2.TabIndex = 9;
207
            this.label2.Text = "Add definition for script to Scripts.h:";
208
            // 
209
            // toolStrip1
210
            // 
211
            this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
212
            this.Save_button,
213
            this.toolStripSeparator1,
214
            this.Addbutton,
215
            this.toolStripSeparator4,
216
            this.Delbutton,
217
            this.toolStripSeparator2,
218
            this.Upbutton,
219
            this.toolStripSeparator3,
220
            this.Downbutton,
221
            this.FindtextBox,
222
            this.toolStripLabel1});
223
            this.toolStrip1.Location = new System.Drawing.Point(0, 0);
224
            this.toolStrip1.Name = "toolStrip1";
225
            this.toolStrip1.Size = new System.Drawing.Size(742, 25);
226
            this.toolStrip1.TabIndex = 10;
227
            this.toolStrip1.Text = "toolStrip1";
228
            // 
229
            // Save_button
230
            // 
231
            this.Save_button.Image = ((System.Drawing.Image)(resources.GetObject("Save_button.Image")));
232
            this.Save_button.ImageTransparentColor = System.Drawing.Color.Magenta;
233
            this.Save_button.Name = "Save_button";
234
            this.Save_button.Size = new System.Drawing.Size(79, 22);
235
            this.Save_button.Text = "Registered";
236
            this.Save_button.ToolTipText = "Save all changes to files.";
237
            this.Save_button.Click += new System.EventHandler(this.Save_button_Click);
238
            // 
239
            // toolStripSeparator1
240
            // 
241
            this.toolStripSeparator1.Name = "toolStripSeparator1";
242
            this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
243
            // 
244
            // Addbutton
245
            // 
246
            this.Addbutton.AutoSize = false;
247
            this.Addbutton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
248
            this.Addbutton.Image = ((System.Drawing.Image)(resources.GetObject("Addbutton.Image")));
249
            this.Addbutton.ImageTransparentColor = System.Drawing.Color.Magenta;
250
            this.Addbutton.Name = "Addbutton";
251
            this.Addbutton.Size = new System.Drawing.Size(25, 22);
252
            this.Addbutton.ToolTipText = "Add script line";
253
            this.Addbutton.Click += new System.EventHandler(this.Addbutton_Click);
254
            // 
255
            // toolStripSeparator4
256
            // 
257
            this.toolStripSeparator4.Name = "toolStripSeparator4";
258
            this.toolStripSeparator4.Size = new System.Drawing.Size(6, 25);
259
            // 
260
            // Delbutton
261
            // 
262
            this.Delbutton.AutoSize = false;
263
            this.Delbutton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
264
            this.Delbutton.Image = ((System.Drawing.Image)(resources.GetObject("Delbutton.Image")));
265
            this.Delbutton.ImageTransparentColor = System.Drawing.Color.Magenta;
266
            this.Delbutton.Name = "Delbutton";
267
            this.Delbutton.Size = new System.Drawing.Size(25, 22);
268
            this.Delbutton.ToolTipText = "Delete last script line";
269
            this.Delbutton.Click += new System.EventHandler(this.Delbutton_Click);
270
            // 
271
            // toolStripSeparator2
272
            // 
273
            this.toolStripSeparator2.Name = "toolStripSeparator2";
274
            this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
275
            // 
276
            // Upbutton
277
            // 
278
            this.Upbutton.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
279
            this.Upbutton.AutoSize = false;
280
            this.Upbutton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
281
            this.Upbutton.Image = ((System.Drawing.Image)(resources.GetObject("Upbutton.Image")));
282
            this.Upbutton.ImageTransparentColor = System.Drawing.Color.Magenta;
283
            this.Upbutton.Name = "Upbutton";
284
            this.Upbutton.Size = new System.Drawing.Size(25, 22);
285
            this.Upbutton.ToolTipText = "Find up";
286
            this.Upbutton.Click += new System.EventHandler(this.Upbutton_Click);
287
            // 
288
            // toolStripSeparator3
289
            // 
290
            this.toolStripSeparator3.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
291
            this.toolStripSeparator3.AutoSize = false;
292
            this.toolStripSeparator3.Name = "toolStripSeparator3";
293
            this.toolStripSeparator3.Size = new System.Drawing.Size(8, 25);
294
            // 
295
            // Downbutton
296
            // 
297
            this.Downbutton.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
298
            this.Downbutton.AutoSize = false;
299
            this.Downbutton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
300
            this.Downbutton.Image = ((System.Drawing.Image)(resources.GetObject("Downbutton.Image")));
301
            this.Downbutton.ImageTransparentColor = System.Drawing.Color.Magenta;
302
            this.Downbutton.Name = "Downbutton";
303
            this.Downbutton.Size = new System.Drawing.Size(25, 22);
304
            this.Downbutton.ToolTipText = "Find down";
305
            this.Downbutton.Click += new System.EventHandler(this.Downbutton_Click);
306
            // 
307
            // FindtextBox
308
            // 
309
            this.FindtextBox.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
310
            this.FindtextBox.AutoSize = false;
311
            this.FindtextBox.BackColor = System.Drawing.SystemColors.ControlLight;
312
            this.FindtextBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
313
            this.FindtextBox.Name = "FindtextBox";
314
            this.FindtextBox.Size = new System.Drawing.Size(300, 21);
315
            // 
316
            // toolStripLabel1
317
            // 
318
            this.toolStripLabel1.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
319
            this.toolStripLabel1.AutoSize = false;
320
            this.toolStripLabel1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
321
            this.toolStripLabel1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripLabel1.Image")));
322
            this.toolStripLabel1.Name = "toolStripLabel1";
323
            this.toolStripLabel1.Size = new System.Drawing.Size(20, 16);
324
            // 
325
            // RegisterScript
326
            // 
327
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
328
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
329
            this.ClientSize = new System.Drawing.Size(742, 535);
330
            this.Controls.Add(this.toolStrip1);
331
            this.Controls.Add(this.AllowCheckBox);
332
            this.Controls.Add(this.DefinetextBox);
333
            this.Controls.Add(this.groupBox);
334
            this.Controls.Add(this.label2);
335
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
336
            this.KeyPreview = true;
337
            this.MinimumSize = new System.Drawing.Size(250, 250);
338
            this.Name = "RegisterScript";
339
            this.ShowInTaskbar = false;
340
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
341
            this.Text = "Scripts list editor";
342
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.RegisterScript_FormClosing);
343
            this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.RegisterScript_KeyDown);
344
            ((System.ComponentModel.ISupportInitialize)(this.dgvScripts)).EndInit();
345
            this.groupBox.ResumeLayout(false);
346
            this.toolStrip1.ResumeLayout(false);
347
            this.toolStrip1.PerformLayout();
348
            this.ResumeLayout(false);
349
            this.PerformLayout();
350

351
        }
352

353
        #endregion
354

355
        private ScriptEditor.TextEditorUI.DataGridViewEx dgvScripts;
356
        private System.Windows.Forms.GroupBox groupBox;
357
        private System.Windows.Forms.ToolTip toolTip1;
358
        private System.Windows.Forms.TextBox DefinetextBox;
359
        private System.Windows.Forms.CheckBox AllowCheckBox;
360
        private System.Windows.Forms.Label label2;
361
        private System.Windows.Forms.ImageList imageList1;
362
        private System.Windows.Forms.ToolStrip toolStrip1;
363
        private System.Windows.Forms.ToolStripButton Save_button;
364
        private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
365
        private System.Windows.Forms.ToolStripButton Addbutton;
366
        private System.Windows.Forms.ToolStripButton Delbutton;
367
        private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
368
        private System.Windows.Forms.ToolStripButton Upbutton;
369
        private System.Windows.Forms.ToolStripSeparator toolStripSeparator3;
370
        private System.Windows.Forms.ToolStripButton Downbutton;
371
        private System.Windows.Forms.ToolStripTextBox FindtextBox;
372
        private System.Windows.Forms.ToolStripSeparator toolStripSeparator4;
373
        private System.Windows.Forms.ToolStripLabel toolStripLabel1;
374
        private System.Windows.Forms.DataGridViewTextBoxColumn EntryCol;
375
        private System.Windows.Forms.DataGridViewButtonColumn cLine;
376
        private System.Windows.Forms.DataGridViewTextBoxColumn cScript;
377
        private System.Windows.Forms.DataGridViewTextBoxColumn cDescription;
378
        private System.Windows.Forms.DataGridViewTextBoxColumn cVars;
379
        private System.Windows.Forms.DataGridViewTextBoxColumn cName;
380
    }
381
}

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.