-
Notifications
You must be signed in to change notification settings - Fork 1
/
Form1.Designer.cs
124 lines (117 loc) · 5.43 KB
/
Form1.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
namespace Nioh_2_Save_Converter
{
partial class Form1
{
/// <summary>
/// Variable nécessaire au concepteur.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Nettoyage des ressources utilisées.
/// </summary>
/// <param name="disposing">true si les ressources managées doivent être supprimées ; sinon, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Code généré par le Concepteur Windows Form
/// <summary>
/// Méthode requise pour la prise en charge du concepteur - ne modifiez pas
/// le contenu de cette méthode avec l'éditeur de code.
/// </summary>
private void InitializeComponent()
{
this.LoadOriginalSave = new System.Windows.Forms.Button();
this.LoadNewSave = new System.Windows.Forms.Button();
this.ConvertSavegameButton = new System.Windows.Forms.Button();
this.originalSaveFileName = new System.Windows.Forms.Label();
this.newSaveFileName = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// LoadOriginalSave
//
this.LoadOriginalSave.Location = new System.Drawing.Point(12, 12);
this.LoadOriginalSave.Name = "LoadOriginalSave";
this.LoadOriginalSave.Size = new System.Drawing.Size(162, 23);
this.LoadOriginalSave.TabIndex = 0;
this.LoadOriginalSave.Text = "Load Original Save File";
this.LoadOriginalSave.UseVisualStyleBackColor = true;
this.LoadOriginalSave.Click += new System.EventHandler(this.LoadOriginalSave_Click);
//
// LoadNewSave
//
this.LoadNewSave.Location = new System.Drawing.Point(12, 43);
this.LoadNewSave.Name = "LoadNewSave";
this.LoadNewSave.Size = new System.Drawing.Size(162, 24);
this.LoadNewSave.TabIndex = 1;
this.LoadNewSave.Text = "Load New Save File";
this.LoadNewSave.UseVisualStyleBackColor = true;
this.LoadNewSave.Click += new System.EventHandler(this.LoadNewSave_Click);
//
// ConvertSavegameButton
//
this.ConvertSavegameButton.Location = new System.Drawing.Point(55, 73);
this.ConvertSavegameButton.Name = "ConvertSavegameButton";
this.ConvertSavegameButton.Size = new System.Drawing.Size(75, 23);
this.ConvertSavegameButton.TabIndex = 3;
this.ConvertSavegameButton.Text = "Convert";
this.ConvertSavegameButton.UseVisualStyleBackColor = true;
this.ConvertSavegameButton.Click += new System.EventHandler(this.ConvertButton_Click);
//
// originalSaveFileName
//
this.originalSaveFileName.AutoSize = true;
this.originalSaveFileName.Location = new System.Drawing.Point(180, 17);
this.originalSaveFileName.Name = "originalSaveFileName";
this.originalSaveFileName.Size = new System.Drawing.Size(0, 13);
this.originalSaveFileName.TabIndex = 4;
//
// newSaveFileName
//
this.newSaveFileName.AutoSize = true;
this.newSaveFileName.Location = new System.Drawing.Point(180, 49);
this.newSaveFileName.Name = "newSaveFileName";
this.newSaveFileName.Size = new System.Drawing.Size(0, 13);
this.newSaveFileName.TabIndex = 5;
//
// label1
//
this.label1.AutoSize = true;
this.label1.ForeColor = System.Drawing.SystemColors.ControlDark;
this.label1.Location = new System.Drawing.Point(9, 111);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(185, 13);
this.label1.TabIndex = 6;
this.label1.Text = "by Github.com/BelovedTomboyishGirl";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(876, 154);
this.Controls.Add(this.label1);
this.Controls.Add(this.newSaveFileName);
this.Controls.Add(this.originalSaveFileName);
this.Controls.Add(this.ConvertSavegameButton);
this.Controls.Add(this.LoadNewSave);
this.Controls.Add(this.LoadOriginalSave);
this.Name = "Form1";
this.Text = "Form1";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button LoadOriginalSave;
private System.Windows.Forms.Button LoadNewSave;
private System.Windows.Forms.Button ConvertSavegameButton;
private System.Windows.Forms.Label originalSaveFileName;
private System.Windows.Forms.Label newSaveFileName;
private System.Windows.Forms.Label label1;
}
}