This repository was archived by the owner on Jan 24, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMainWindow.Designer.cs
More file actions
196 lines (190 loc) · 9.48 KB
/
Copy pathMainWindow.Designer.cs
File metadata and controls
196 lines (190 loc) · 9.48 KB
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
namespace WolfEventCodeCreater
{
partial class MainWindow
{
/// <summary>
/// 必要なデザイナー変数です。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 使用中のリソースをすべてクリーンアップします。
/// </summary>
/// <param name="disposing">マネージ リソースを破棄する場合は true を指定し、その他の場合は false を指定します。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows フォーム デザイナーで生成されたコード
/// <summary>
/// デザイナー サポートに必要なメソッドです。このメソッドの内容を
/// コード エディターで変更しないでください。
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainWindow));
this.button1 = new System.Windows.Forms.Button();
this.textBox1 = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.ファイルToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.selectProjectToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.closeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ヘルプToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.設定ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.button2 = new System.Windows.Forms.Button();
this.textBox2 = new System.Windows.Forms.TextBox();
this.menuStrip1.SuspendLayout();
this.SuspendLayout();
//
// button1
//
this.button1.Location = new System.Drawing.Point(173, 34);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(107, 23);
this.button1.TabIndex = 0;
this.button1.Text = "プロジェクト選択";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.selectProject);
//
// textBox1
//
this.textBox1.Location = new System.Drawing.Point(13, 36);
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(154, 19);
this.textBox1.TabIndex = 1;
this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(14, 69);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(0, 12);
this.label2.TabIndex = 3;
//
// menuStrip1
//
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.ファイルToolStripMenuItem,
this.ヘルプToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(292, 24);
this.menuStrip1.TabIndex = 5;
this.menuStrip1.Text = "menuStrip1";
//
// ファイルToolStripMenuItem
//
this.ファイルToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.selectProjectToolStripMenuItem,
this.toolStripSeparator1,
this.closeToolStripMenuItem});
this.ファイルToolStripMenuItem.Name = "ファイルToolStripMenuItem";
this.ファイルToolStripMenuItem.Size = new System.Drawing.Size(51, 20);
this.ファイルToolStripMenuItem.Text = "ファイル";
//
// selectProjectToolStripMenuItem
//
this.selectProjectToolStripMenuItem.Name = "selectProjectToolStripMenuItem";
this.selectProjectToolStripMenuItem.Size = new System.Drawing.Size(145, 22);
this.selectProjectToolStripMenuItem.Text = "プロジェクト選択";
this.selectProjectToolStripMenuItem.Click += new System.EventHandler(this.selectProject);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(142, 6);
//
// closeToolStripMenuItem
//
this.closeToolStripMenuItem.Name = "closeToolStripMenuItem";
this.closeToolStripMenuItem.Size = new System.Drawing.Size(145, 22);
this.closeToolStripMenuItem.Text = "終了";
this.closeToolStripMenuItem.Click += new System.EventHandler(this.closeToolStripMenuItem_Click);
//
// ヘルプToolStripMenuItem
//
this.ヘルプToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.設定ToolStripMenuItem,
this.aboutToolStripMenuItem});
this.ヘルプToolStripMenuItem.Name = "ヘルプToolStripMenuItem";
this.ヘルプToolStripMenuItem.Size = new System.Drawing.Size(46, 20);
this.ヘルプToolStripMenuItem.Text = "ヘルプ";
//
// 設定ToolStripMenuItem
//
this.設定ToolStripMenuItem.Name = "設定ToolStripMenuItem";
this.設定ToolStripMenuItem.Size = new System.Drawing.Size(139, 22);
this.設定ToolStripMenuItem.Text = "設定";
this.設定ToolStripMenuItem.Click += new System.EventHandler(this.setting);
//
// aboutToolStripMenuItem
//
this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
this.aboutToolStripMenuItem.Size = new System.Drawing.Size(139, 22);
this.aboutToolStripMenuItem.Text = "バージョン情報";
this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
//
// button2
//
this.button2.Enabled = false;
this.button2.Location = new System.Drawing.Point(12, 232);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(268, 29);
this.button2.TabIndex = 6;
this.button2.Text = "実行";
this.button2.UseVisualStyleBackColor = true;
this.button2.Click += new System.EventHandler(this.create);
//
// textBox2
//
this.textBox2.Location = new System.Drawing.Point(12, 66);
this.textBox2.Multiline = true;
this.textBox2.Name = "textBox2";
this.textBox2.ReadOnly = true;
this.textBox2.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.textBox2.Size = new System.Drawing.Size(268, 157);
this.textBox2.TabIndex = 7;
//
// MainWindow
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(292, 273);
this.Controls.Add(this.textBox2);
this.Controls.Add(this.button2);
this.Controls.Add(this.label2);
this.Controls.Add(this.textBox1);
this.Controls.Add(this.button1);
this.Controls.Add(this.menuStrip1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MainMenuStrip = this.menuStrip1;
this.Name = "MainWindow";
this.Text = "WolfEventCodeCreater";
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button button1;
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.MenuStrip menuStrip1;
private System.Windows.Forms.Button button2;
private System.Windows.Forms.ToolStripMenuItem ファイルToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem ヘルプToolStripMenuItem;
public System.Windows.Forms.TextBox textBox2;
private System.Windows.Forms.ToolStripMenuItem aboutToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private System.Windows.Forms.ToolStripMenuItem closeToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem selectProjectToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 設定ToolStripMenuItem;
}
}