-
Notifications
You must be signed in to change notification settings - Fork 0
/
npcForm.Designer.cs
88 lines (82 loc) · 3.56 KB
/
npcForm.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
namespace Shrek_2_team_action_tools
{
partial class npcForm
{
/// <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(npcForm));
this.extractBtn = new System.Windows.Forms.Button();
this.importBtn = new System.Windows.Forms.Button();
this.listBoxNPC = new System.Windows.Forms.ListBox();
this.SuspendLayout();
//
// extractBtn
//
this.extractBtn.Location = new System.Drawing.Point(178, 29);
this.extractBtn.Name = "extractBtn";
this.extractBtn.Size = new System.Drawing.Size(75, 23);
this.extractBtn.TabIndex = 0;
this.extractBtn.Text = "Extract";
this.extractBtn.UseVisualStyleBackColor = true;
this.extractBtn.Click += new System.EventHandler(this.extractBtn_Click);
//
// importBtn
//
this.importBtn.Location = new System.Drawing.Point(541, 29);
this.importBtn.Name = "importBtn";
this.importBtn.Size = new System.Drawing.Size(75, 23);
this.importBtn.TabIndex = 1;
this.importBtn.Text = "Import";
this.importBtn.UseVisualStyleBackColor = true;
this.importBtn.Click += new System.EventHandler(this.importBtn_Click);
//
// listBoxNPC
//
this.listBoxNPC.FormattingEnabled = true;
this.listBoxNPC.Location = new System.Drawing.Point(13, 71);
this.listBoxNPC.Name = "listBoxNPC";
this.listBoxNPC.Size = new System.Drawing.Size(775, 368);
this.listBoxNPC.TabIndex = 2;
//
// npcForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Controls.Add(this.listBoxNPC);
this.Controls.Add(this.importBtn);
this.Controls.Add(this.extractBtn);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.Name = "npcForm";
this.Text = "NPC text extractor/importer";
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button extractBtn;
private System.Windows.Forms.Button importBtn;
private System.Windows.Forms.ListBox listBoxNPC;
}
}