forked from EtherianDR/InventoryView
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInventoryViewForm.Designer.cs
More file actions
264 lines (258 loc) · 12.4 KB
/
InventoryViewForm.Designer.cs
File metadata and controls
264 lines (258 loc) · 12.4 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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
namespace InventoryView
{
partial class InventoryViewForm
{
/// <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();
this.tv = new System.Windows.Forms.TreeView();
this.txtSearch = new System.Windows.Forms.TextBox();
this.chkCharacters = new System.Windows.Forms.CheckedListBox();
this.lblSearch = new System.Windows.Forms.Label();
this.btnSearch = new System.Windows.Forms.Button();
this.btnExpand = new System.Windows.Forms.Button();
this.btnCollapse = new System.Windows.Forms.Button();
this.btnWiki = new System.Windows.Forms.Button();
this.btnReset = new System.Windows.Forms.Button();
this.btnFindNext = new System.Windows.Forms.Button();
this.btnFindPrev = new System.Windows.Forms.Button();
this.btnScan = new System.Windows.Forms.Button();
this.btnReload = new System.Windows.Forms.Button();
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.copyTapToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.exportBranchToFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.btnExport = new System.Windows.Forms.Button();
this.contextMenuStrip1.SuspendLayout();
this.SuspendLayout();
//
// tv
//
this.tv.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.tv.Location = new System.Drawing.Point(12, 55);
this.tv.Name = "tv";
this.tv.ShowNodeToolTips = true;
this.tv.Size = new System.Drawing.Size(1033, 404);
this.tv.TabIndex = 10;
this.tv.MouseUp += new System.Windows.Forms.MouseEventHandler(this.tv_MouseUp);
//
// txtSearch
//
this.txtSearch.Location = new System.Drawing.Point(62, 18);
this.txtSearch.Name = "txtSearch";
this.txtSearch.Size = new System.Drawing.Size(262, 20);
this.txtSearch.TabIndex = 1;
//
// chkCharacters
//
this.chkCharacters.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.chkCharacters.FormattingEnabled = true;
this.chkCharacters.Location = new System.Drawing.Point(909, 41);
this.chkCharacters.Name = "chkCharacters";
this.chkCharacters.Size = new System.Drawing.Size(136, 19);
this.chkCharacters.TabIndex = 9;
this.chkCharacters.Visible = false;
//
// lblSearch
//
this.lblSearch.AutoSize = true;
this.lblSearch.Location = new System.Drawing.Point(12, 21);
this.lblSearch.Name = "lblSearch";
this.lblSearch.Size = new System.Drawing.Size(44, 13);
this.lblSearch.TabIndex = 0;
this.lblSearch.Text = "Search:";
//
// btnSearch
//
this.btnSearch.Location = new System.Drawing.Point(353, 16);
this.btnSearch.Name = "btnSearch";
this.btnSearch.Size = new System.Drawing.Size(75, 23);
this.btnSearch.TabIndex = 2;
this.btnSearch.Text = "Search";
this.btnSearch.UseVisualStyleBackColor = true;
this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
//
// btnExpand
//
this.btnExpand.Location = new System.Drawing.Point(596, 5);
this.btnExpand.Name = "btnExpand";
this.btnExpand.Size = new System.Drawing.Size(75, 23);
this.btnExpand.TabIndex = 6;
this.btnExpand.Text = "Expand All";
this.btnExpand.UseVisualStyleBackColor = true;
this.btnExpand.Click += new System.EventHandler(this.btnExpand_Click);
//
// btnCollapse
//
this.btnCollapse.Location = new System.Drawing.Point(596, 27);
this.btnCollapse.Name = "btnCollapse";
this.btnCollapse.Size = new System.Drawing.Size(75, 23);
this.btnCollapse.TabIndex = 7;
this.btnCollapse.Text = "Collapse All";
this.btnCollapse.UseVisualStyleBackColor = true;
this.btnCollapse.Click += new System.EventHandler(this.btnCollapse_Click);
//
// btnWiki
//
this.btnWiki.Location = new System.Drawing.Point(677, 16);
this.btnWiki.Name = "btnWiki";
this.btnWiki.Size = new System.Drawing.Size(75, 23);
this.btnWiki.TabIndex = 8;
this.btnWiki.Text = "Wiki Lookup";
this.btnWiki.UseVisualStyleBackColor = true;
this.btnWiki.Click += new System.EventHandler(this.btnWiki_Click);
//
// btnReset
//
this.btnReset.Location = new System.Drawing.Point(515, 16);
this.btnReset.Name = "btnReset";
this.btnReset.Size = new System.Drawing.Size(75, 23);
this.btnReset.TabIndex = 5;
this.btnReset.Text = "Reset";
this.btnReset.UseVisualStyleBackColor = true;
this.btnReset.Visible = false;
this.btnReset.Click += new System.EventHandler(this.btnReset_Click);
//
// btnFindNext
//
this.btnFindNext.Location = new System.Drawing.Point(434, 27);
this.btnFindNext.Name = "btnFindNext";
this.btnFindNext.Size = new System.Drawing.Size(75, 23);
this.btnFindNext.TabIndex = 4;
this.btnFindNext.Text = "Find Next";
this.btnFindNext.UseVisualStyleBackColor = true;
this.btnFindNext.Visible = false;
this.btnFindNext.Click += new System.EventHandler(this.btnFindNext_Click);
//
// btnFindPrev
//
this.btnFindPrev.Location = new System.Drawing.Point(434, 5);
this.btnFindPrev.Name = "btnFindPrev";
this.btnFindPrev.Size = new System.Drawing.Size(75, 23);
this.btnFindPrev.TabIndex = 3;
this.btnFindPrev.Text = "Find Prev";
this.btnFindPrev.UseVisualStyleBackColor = true;
this.btnFindPrev.Visible = false;
this.btnFindPrev.Click += new System.EventHandler(this.btnFindPrev_Click);
//
// btnScan
//
this.btnScan.Location = new System.Drawing.Point(838, 16);
this.btnScan.Name = "btnScan";
this.btnScan.Size = new System.Drawing.Size(97, 23);
this.btnScan.TabIndex = 11;
this.btnScan.Text = "Scan Inventory";
this.btnScan.UseVisualStyleBackColor = true;
this.btnScan.Click += new System.EventHandler(this.btnScan_Click);
//
// btnReload
//
this.btnReload.Location = new System.Drawing.Point(941, 16);
this.btnReload.Name = "btnReload";
this.btnReload.Size = new System.Drawing.Size(97, 23);
this.btnReload.TabIndex = 12;
this.btnReload.Text = "Reload File";
this.btnReload.UseVisualStyleBackColor = true;
this.btnReload.Click += new System.EventHandler(this.btnReload_Click);
//
// contextMenuStrip1
//
this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.copyTapToolStripMenuItem,
this.exportBranchToFileToolStripMenuItem});
this.contextMenuStrip1.Name = "contextMenuStrip1";
this.contextMenuStrip1.Size = new System.Drawing.Size(143, 48);
//
// copyTapToolStripMenuItem
//
this.copyTapToolStripMenuItem.Name = "copyTapToolStripMenuItem";
this.copyTapToolStripMenuItem.Size = new System.Drawing.Size(142, 22);
this.copyTapToolStripMenuItem.Text = "Copy Text";
this.copyTapToolStripMenuItem.Click += new System.EventHandler(this.copyTapToolStripMenuItem_Click);
//
// exportBranchToFileToolStripMenuItem
//
this.exportBranchToFileToolStripMenuItem.Name = "exportBranchToFileToolStripMenuItem";
this.exportBranchToFileToolStripMenuItem.Size = new System.Drawing.Size(142, 22);
this.exportBranchToFileToolStripMenuItem.Text = "Copy Branch";
this.exportBranchToFileToolStripMenuItem.Click += new System.EventHandler(this.exportBranchToFileToolStripMenuItem_Click);
//
// btnExport
//
this.btnExport.Location = new System.Drawing.Point(758, 16);
this.btnExport.Name = "btnExport";
this.btnExport.Size = new System.Drawing.Size(75, 23);
this.btnExport.TabIndex = 13;
this.btnExport.Text = "Export";
this.btnExport.UseVisualStyleBackColor = true;
this.btnExport.Click += new System.EventHandler(this.btnExport_Click);
//
// InventoryViewForm
//
this.AcceptButton = this.btnSearch;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1057, 471);
this.Controls.Add(this.btnExport);
this.Controls.Add(this.btnReload);
this.Controls.Add(this.btnScan);
this.Controls.Add(this.btnFindNext);
this.Controls.Add(this.btnFindPrev);
this.Controls.Add(this.btnReset);
this.Controls.Add(this.btnWiki);
this.Controls.Add(this.btnCollapse);
this.Controls.Add(this.btnExpand);
this.Controls.Add(this.btnSearch);
this.Controls.Add(this.lblSearch);
this.Controls.Add(this.chkCharacters);
this.Controls.Add(this.txtSearch);
this.Controls.Add(this.tv);
this.Name = "InventoryViewForm";
this.Text = "Inventory View";
this.Load += new System.EventHandler(this.InventoryViewForm_Load);
this.contextMenuStrip1.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TreeView tv;
private System.Windows.Forms.TextBox txtSearch;
private System.Windows.Forms.CheckedListBox chkCharacters;
private System.Windows.Forms.Label lblSearch;
private System.Windows.Forms.Button btnSearch;
private System.Windows.Forms.Button btnExpand;
private System.Windows.Forms.Button btnCollapse;
private System.Windows.Forms.Button btnWiki;
private System.Windows.Forms.Button btnReset;
private System.Windows.Forms.Button btnFindNext;
private System.Windows.Forms.Button btnFindPrev;
private System.Windows.Forms.Button btnScan;
private System.Windows.Forms.Button btnReload;
private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
private System.Windows.Forms.ToolStripMenuItem copyTapToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem exportBranchToFileToolStripMenuItem;
private System.Windows.Forms.Button btnExport;
}
}