-
Notifications
You must be signed in to change notification settings - Fork 0
/
Main.Designer.cs
156 lines (150 loc) · 6.9 KB
/
Main.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
150
151
152
153
154
155
156
namespace ShaftkitMSA2_Parser
{
partial class Main
{
/// <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()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Main));
this.btnParse = new System.Windows.Forms.Button();
this.txtInputFile = new System.Windows.Forms.TextBox();
this.txtOutputFolder = new System.Windows.Forms.TextBox();
this.fileHelperBindingSource = new System.Windows.Forms.BindingSource(this.components);
this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
this.btnOpenFileDialog = new System.Windows.Forms.Button();
this.btnSaveFileDialog = new System.Windows.Forms.Button();
this.folderBrowserDialog1 = new System.Windows.Forms.FolderBrowserDialog();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this.fileHelperBindingSource)).BeginInit();
this.SuspendLayout();
//
// btnParse
//
this.btnParse.Location = new System.Drawing.Point(707, 148);
this.btnParse.Margin = new System.Windows.Forms.Padding(2);
this.btnParse.Name = "btnParse";
this.btnParse.Size = new System.Drawing.Size(136, 36);
this.btnParse.TabIndex = 0;
this.btnParse.Text = "Run";
this.btnParse.UseVisualStyleBackColor = true;
this.btnParse.Click += new System.EventHandler(this.btnParse_Click);
//
// txtInputFile
//
this.txtInputFile.Location = new System.Drawing.Point(24, 35);
this.txtInputFile.Margin = new System.Windows.Forms.Padding(2);
this.txtInputFile.Name = "txtInputFile";
this.txtInputFile.Size = new System.Drawing.Size(698, 27);
this.txtInputFile.TabIndex = 1;
this.txtInputFile.Text = "C:\\Users\\ZacSchramm\\LamaLo\\LL - General\\Software\\Z-Shaftkit\\Modeling\\DYNEXE\\SHAFT" +
".OUT";
//
// txtOutputFolder
//
this.txtOutputFolder.Location = new System.Drawing.Point(27, 92);
this.txtOutputFolder.Margin = new System.Windows.Forms.Padding(2);
this.txtOutputFolder.Name = "txtOutputFolder";
this.txtOutputFolder.Size = new System.Drawing.Size(698, 27);
this.txtOutputFolder.TabIndex = 2;
this.txtOutputFolder.Text = "c:\\temp";
//
// openFileDialog1
//
this.openFileDialog1.FileName = "openFileDialog1";
//
// btnOpenFileDialog
//
this.btnOpenFileDialog.Location = new System.Drawing.Point(727, 35);
this.btnOpenFileDialog.Name = "btnOpenFileDialog";
this.btnOpenFileDialog.Size = new System.Drawing.Size(116, 27);
this.btnOpenFileDialog.TabIndex = 4;
this.btnOpenFileDialog.Text = "Browse";
this.btnOpenFileDialog.UseVisualStyleBackColor = true;
this.btnOpenFileDialog.Click += new System.EventHandler(this.btnOpenFileDialog_Click);
//
// btnSaveFileDialog
//
this.btnSaveFileDialog.Location = new System.Drawing.Point(730, 92);
this.btnSaveFileDialog.Name = "btnSaveFileDialog";
this.btnSaveFileDialog.Size = new System.Drawing.Size(113, 26);
this.btnSaveFileDialog.TabIndex = 5;
this.btnSaveFileDialog.Text = "Browse";
this.btnSaveFileDialog.UseVisualStyleBackColor = true;
this.btnSaveFileDialog.Click += new System.EventHandler(this.btnSaveFileDialog_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(27, 10);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(70, 20);
this.label1.TabIndex = 6;
this.label1.Text = "Input File";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(27, 70);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(101, 20);
this.label2.TabIndex = 7;
this.label2.Text = "Output Folder";
//
// Main
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(855, 222);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.btnSaveFileDialog);
this.Controls.Add(this.btnOpenFileDialog);
this.Controls.Add(this.txtOutputFolder);
this.Controls.Add(this.txtInputFile);
this.Controls.Add(this.btnParse);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Margin = new System.Windows.Forms.Padding(2);
this.Name = "Main";
this.Text = "Shaftkit MSA 2.0 - SHAFT.OUT Parser";
((System.ComponentModel.ISupportInitialize)(this.fileHelperBindingSource)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private Button btnParse;
private TextBox txtInputFile;
private TextBox txtOutputFolder;
private BindingSource fileHelperBindingSource;
private OpenFileDialog openFileDialog1;
private Button btnOpenFileDialog;
private Button btnSaveFileDialog;
private FolderBrowserDialog folderBrowserDialog1;
private Label label1;
private Label label2;
private Label label3;
}
}