-
Notifications
You must be signed in to change notification settings - Fork 12
/
CodeFixerForm.Designer.cs
149 lines (143 loc) · 5.96 KB
/
CodeFixerForm.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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
namespace SM64DSe
{
partial class CodeFixerForm
{
/// <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(CodeFixerForm));
this.lblFile = new System.Windows.Forms.Label();
this.txtFile = new System.Windows.Forms.TextBox();
this.lblOffset = new System.Windows.Forms.Label();
this.txtOffset = new System.Windows.Forms.TextBox();
this.lblSize = new System.Windows.Forms.Label();
this.txtSize = new System.Windows.Forms.TextBox();
this.btnFile = new System.Windows.Forms.Button();
this.btnFix = new System.Windows.Forms.Button();
this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
this.SuspendLayout();
//
// lblFile
//
this.lblFile.AutoSize = true;
this.lblFile.Location = new System.Drawing.Point(12, 9);
this.lblFile.Name = "lblFile";
this.lblFile.Size = new System.Drawing.Size(55, 13);
this.lblFile.TabIndex = 0;
this.lblFile.Text = "Binary File";
//
// txtFile
//
this.txtFile.Location = new System.Drawing.Point(73, 6);
this.txtFile.Name = "txtFile";
this.txtFile.Size = new System.Drawing.Size(348, 20);
this.txtFile.TabIndex = 1;
//
// lblOffset
//
this.lblOffset.AutoSize = true;
this.lblOffset.Location = new System.Drawing.Point(12, 35);
this.lblOffset.Name = "lblOffset";
this.lblOffset.Size = new System.Drawing.Size(35, 13);
this.lblOffset.TabIndex = 2;
this.lblOffset.Text = "Offset";
//
// txtOffset
//
this.txtOffset.Location = new System.Drawing.Point(73, 32);
this.txtOffset.Name = "txtOffset";
this.txtOffset.Size = new System.Drawing.Size(138, 20);
this.txtOffset.TabIndex = 3;
//
// lblSize
//
this.lblSize.AutoSize = true;
this.lblSize.Location = new System.Drawing.Point(250, 35);
this.lblSize.Name = "lblSize";
this.lblSize.Size = new System.Drawing.Size(27, 13);
this.lblSize.TabIndex = 4;
this.lblSize.Text = "Size";
//
// txtSize
//
this.txtSize.Location = new System.Drawing.Point(283, 32);
this.txtSize.Name = "txtSize";
this.txtSize.Size = new System.Drawing.Size(138, 20);
this.txtSize.TabIndex = 5;
//
// btnFile
//
this.btnFile.Location = new System.Drawing.Point(89, 75);
this.btnFile.Name = "btnFile";
this.btnFile.Size = new System.Drawing.Size(75, 23);
this.btnFile.TabIndex = 6;
this.btnFile.Text = "Select File";
this.btnFile.UseVisualStyleBackColor = true;
this.btnFile.Click += new System.EventHandler(this.btnFile_Click);
//
// btnFix
//
this.btnFix.Location = new System.Drawing.Point(253, 75);
this.btnFix.Name = "btnFix";
this.btnFix.Size = new System.Drawing.Size(75, 23);
this.btnFix.TabIndex = 7;
this.btnFix.Text = "Fix Offsets!";
this.btnFix.UseVisualStyleBackColor = true;
this.btnFix.Click += new System.EventHandler(this.btnFix_Click);
//
// openFileDialog
//
this.openFileDialog.FileName = "openFileDialog1";
this.openFileDialog.Title = "Select File to Fix";
//
// CodeFixerForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(428, 109);
this.Controls.Add(this.btnFix);
this.Controls.Add(this.btnFile);
this.Controls.Add(this.txtSize);
this.Controls.Add(this.lblSize);
this.Controls.Add(this.txtOffset);
this.Controls.Add(this.lblOffset);
this.Controls.Add(this.txtFile);
this.Controls.Add(this.lblFile);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "CodeFixerForm";
this.Text = "Code Offset Fixer";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label lblFile;
private System.Windows.Forms.TextBox txtFile;
private System.Windows.Forms.Label lblOffset;
private System.Windows.Forms.TextBox txtOffset;
private System.Windows.Forms.Label lblSize;
private System.Windows.Forms.TextBox txtSize;
private System.Windows.Forms.Button btnFile;
private System.Windows.Forms.Button btnFix;
private System.Windows.Forms.OpenFileDialog openFileDialog;
}
}