StephaneLenclud@76
|
1 |
//
|
StephaneLenclud@76
|
2 |
// Copyright (C) 2014-2015 Stéphane Lenclud.
|
StephaneLenclud@76
|
3 |
//
|
StephaneLenclud@76
|
4 |
// This file is part of SharpLibHid.
|
StephaneLenclud@76
|
5 |
//
|
StephaneLenclud@76
|
6 |
// SharpDisplayManager is free software: you can redistribute it and/or modify
|
StephaneLenclud@76
|
7 |
// it under the terms of the GNU General Public License as published by
|
StephaneLenclud@76
|
8 |
// the Free Software Foundation, either version 3 of the License, or
|
StephaneLenclud@76
|
9 |
// (at your option) any later version.
|
StephaneLenclud@76
|
10 |
//
|
StephaneLenclud@76
|
11 |
// SharpDisplayManager is distributed in the hope that it will be useful,
|
StephaneLenclud@76
|
12 |
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
StephaneLenclud@76
|
13 |
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
StephaneLenclud@76
|
14 |
// GNU General Public License for more details.
|
StephaneLenclud@76
|
15 |
//
|
StephaneLenclud@76
|
16 |
// You should have received a copy of the GNU General Public License
|
StephaneLenclud@76
|
17 |
// along with SharpDisplayManager. If not, see <http://www.gnu.org/licenses/>.
|
StephaneLenclud@76
|
18 |
//
|
StephaneLenclud@76
|
19 |
|
StephaneLenclud@76
|
20 |
using System;
|
StephaneLenclud@60
|
21 |
using System.Collections.Generic;
|
StephaneLenclud@60
|
22 |
using System.Text;
|
StephaneLenclud@60
|
23 |
|
StephaneLenclud@78
|
24 |
namespace HidDemo
|
StephaneLenclud@60
|
25 |
{
|
StephaneLenclud@60
|
26 |
public partial class MainForm
|
StephaneLenclud@60
|
27 |
{
|
StephaneLenclud@60
|
28 |
#region Windows Form Designer generated code
|
StephaneLenclud@60
|
29 |
/// <summary>
|
StephaneLenclud@60
|
30 |
/// Required method for Designer support - do not modify
|
StephaneLenclud@60
|
31 |
/// the contents of this method with the code editor.
|
StephaneLenclud@60
|
32 |
/// </summary>
|
StephaneLenclud@60
|
33 |
private void InitializeComponent()
|
StephaneLenclud@60
|
34 |
{
|
StephaneLenclud@60
|
35 |
this.buttonClear = new System.Windows.Forms.Button();
|
StephaneLenclud@60
|
36 |
this.tabControl = new System.Windows.Forms.TabControl();
|
StephaneLenclud@60
|
37 |
this.tabPageMessages = new System.Windows.Forms.TabPage();
|
StephaneLenclud@60
|
38 |
this.listViewEvents = new System.Windows.Forms.ListView();
|
StephaneLenclud@60
|
39 |
this.columnHeaderUsages = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
StephaneLenclud@60
|
40 |
this.columnHeaderInputReport = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
StephaneLenclud@60
|
41 |
this.columnHeaderUsagePage = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
StephaneLenclud@60
|
42 |
this.columnHeaderUsageCollection = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
StephaneLenclud@60
|
43 |
this.columnHeaderRepeat = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
StephaneLenclud@60
|
44 |
this.columnHeaderTime = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
StephaneLenclud@60
|
45 |
this.tabPageDevices = new System.Windows.Forms.TabPage();
|
StephaneLenclud@75
|
46 |
this.buttonRefresh = new System.Windows.Forms.Button();
|
StephaneLenclud@70
|
47 |
this.buttonTreeViewExpandAll = new System.Windows.Forms.Button();
|
StephaneLenclud@70
|
48 |
this.buttonTreeViewCollapseAll = new System.Windows.Forms.Button();
|
StephaneLenclud@60
|
49 |
this.treeViewDevices = new System.Windows.Forms.TreeView();
|
StephaneLenclud@72
|
50 |
this.tabPageTests = new System.Windows.Forms.TabPage();
|
StephaneLenclud@72
|
51 |
this.textBoxTests = new System.Windows.Forms.TextBox();
|
StephaneLenclud@67
|
52 |
this.statusStrip = new System.Windows.Forms.StatusStrip();
|
StephaneLenclud@67
|
53 |
this.toolStripStatusLabelDevice = new System.Windows.Forms.ToolStripStatusLabel();
|
StephaneLenclud@60
|
54 |
this.tabControl.SuspendLayout();
|
StephaneLenclud@60
|
55 |
this.tabPageMessages.SuspendLayout();
|
StephaneLenclud@60
|
56 |
this.tabPageDevices.SuspendLayout();
|
StephaneLenclud@72
|
57 |
this.tabPageTests.SuspendLayout();
|
StephaneLenclud@67
|
58 |
this.statusStrip.SuspendLayout();
|
StephaneLenclud@60
|
59 |
this.SuspendLayout();
|
StephaneLenclud@60
|
60 |
//
|
StephaneLenclud@60
|
61 |
// buttonClear
|
StephaneLenclud@60
|
62 |
//
|
StephaneLenclud@61
|
63 |
this.buttonClear.Location = new System.Drawing.Point(813, 6);
|
StephaneLenclud@60
|
64 |
this.buttonClear.Name = "buttonClear";
|
StephaneLenclud@60
|
65 |
this.buttonClear.Size = new System.Drawing.Size(75, 23);
|
StephaneLenclud@60
|
66 |
this.buttonClear.TabIndex = 3;
|
StephaneLenclud@60
|
67 |
this.buttonClear.Text = "Clear";
|
StephaneLenclud@60
|
68 |
this.buttonClear.UseVisualStyleBackColor = true;
|
StephaneLenclud@60
|
69 |
this.buttonClear.Click += new System.EventHandler(this.buttonClear_Click);
|
StephaneLenclud@60
|
70 |
//
|
StephaneLenclud@60
|
71 |
// tabControl
|
StephaneLenclud@60
|
72 |
//
|
StephaneLenclud@67
|
73 |
this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
StephaneLenclud@67
|
74 |
| System.Windows.Forms.AnchorStyles.Left)));
|
StephaneLenclud@60
|
75 |
this.tabControl.Controls.Add(this.tabPageMessages);
|
StephaneLenclud@60
|
76 |
this.tabControl.Controls.Add(this.tabPageDevices);
|
StephaneLenclud@70
|
77 |
this.tabControl.Controls.Add(this.tabPageTests);
|
StephaneLenclud@60
|
78 |
this.tabControl.Location = new System.Drawing.Point(12, 12);
|
StephaneLenclud@60
|
79 |
this.tabControl.Name = "tabControl";
|
StephaneLenclud@60
|
80 |
this.tabControl.SelectedIndex = 0;
|
StephaneLenclud@67
|
81 |
this.tabControl.Size = new System.Drawing.Size(902, 532);
|
StephaneLenclud@60
|
82 |
this.tabControl.TabIndex = 4;
|
StephaneLenclud@60
|
83 |
//
|
StephaneLenclud@60
|
84 |
// tabPageMessages
|
StephaneLenclud@60
|
85 |
//
|
StephaneLenclud@60
|
86 |
this.tabPageMessages.Controls.Add(this.listViewEvents);
|
StephaneLenclud@60
|
87 |
this.tabPageMessages.Controls.Add(this.buttonClear);
|
StephaneLenclud@60
|
88 |
this.tabPageMessages.Location = new System.Drawing.Point(4, 22);
|
StephaneLenclud@60
|
89 |
this.tabPageMessages.Name = "tabPageMessages";
|
StephaneLenclud@60
|
90 |
this.tabPageMessages.Padding = new System.Windows.Forms.Padding(3);
|
StephaneLenclud@70
|
91 |
this.tabPageMessages.Size = new System.Drawing.Size(894, 506);
|
StephaneLenclud@60
|
92 |
this.tabPageMessages.TabIndex = 0;
|
StephaneLenclud@60
|
93 |
this.tabPageMessages.Text = "Messages";
|
StephaneLenclud@60
|
94 |
this.tabPageMessages.UseVisualStyleBackColor = true;
|
StephaneLenclud@60
|
95 |
//
|
StephaneLenclud@60
|
96 |
// listViewEvents
|
StephaneLenclud@60
|
97 |
//
|
StephaneLenclud@60
|
98 |
this.listViewEvents.Alignment = System.Windows.Forms.ListViewAlignment.Left;
|
StephaneLenclud@60
|
99 |
this.listViewEvents.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
StephaneLenclud@60
|
100 |
| System.Windows.Forms.AnchorStyles.Left)));
|
StephaneLenclud@60
|
101 |
this.listViewEvents.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
StephaneLenclud@60
|
102 |
this.listViewEvents.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
StephaneLenclud@60
|
103 |
this.columnHeaderUsages,
|
StephaneLenclud@60
|
104 |
this.columnHeaderInputReport,
|
StephaneLenclud@60
|
105 |
this.columnHeaderUsagePage,
|
StephaneLenclud@60
|
106 |
this.columnHeaderUsageCollection,
|
StephaneLenclud@60
|
107 |
this.columnHeaderRepeat,
|
StephaneLenclud@60
|
108 |
this.columnHeaderTime});
|
StephaneLenclud@60
|
109 |
this.listViewEvents.GridLines = true;
|
StephaneLenclud@60
|
110 |
this.listViewEvents.Location = new System.Drawing.Point(8, 6);
|
StephaneLenclud@60
|
111 |
this.listViewEvents.Name = "listViewEvents";
|
StephaneLenclud@70
|
112 |
this.listViewEvents.Size = new System.Drawing.Size(744, 492);
|
StephaneLenclud@60
|
113 |
this.listViewEvents.TabIndex = 3;
|
StephaneLenclud@60
|
114 |
this.listViewEvents.UseCompatibleStateImageBehavior = false;
|
StephaneLenclud@60
|
115 |
this.listViewEvents.View = System.Windows.Forms.View.Details;
|
StephaneLenclud@60
|
116 |
//
|
StephaneLenclud@60
|
117 |
// columnHeaderUsages
|
StephaneLenclud@60
|
118 |
//
|
StephaneLenclud@60
|
119 |
this.columnHeaderUsages.Text = "Usages";
|
StephaneLenclud@60
|
120 |
this.columnHeaderUsages.Width = 180;
|
StephaneLenclud@60
|
121 |
//
|
StephaneLenclud@60
|
122 |
// columnHeaderInputReport
|
StephaneLenclud@60
|
123 |
//
|
StephaneLenclud@60
|
124 |
this.columnHeaderInputReport.Text = "Input Report";
|
StephaneLenclud@60
|
125 |
this.columnHeaderInputReport.Width = 176;
|
StephaneLenclud@60
|
126 |
//
|
StephaneLenclud@60
|
127 |
// columnHeaderUsagePage
|
StephaneLenclud@60
|
128 |
//
|
StephaneLenclud@60
|
129 |
this.columnHeaderUsagePage.Text = "Usage Page";
|
StephaneLenclud@60
|
130 |
this.columnHeaderUsagePage.Width = 87;
|
StephaneLenclud@60
|
131 |
//
|
StephaneLenclud@60
|
132 |
// columnHeaderUsageCollection
|
StephaneLenclud@60
|
133 |
//
|
StephaneLenclud@60
|
134 |
this.columnHeaderUsageCollection.Text = "Usage Collection";
|
StephaneLenclud@60
|
135 |
this.columnHeaderUsageCollection.Width = 134;
|
StephaneLenclud@60
|
136 |
//
|
StephaneLenclud@60
|
137 |
// columnHeaderRepeat
|
StephaneLenclud@60
|
138 |
//
|
StephaneLenclud@60
|
139 |
this.columnHeaderRepeat.Text = "Repeat";
|
StephaneLenclud@60
|
140 |
this.columnHeaderRepeat.Width = 68;
|
StephaneLenclud@60
|
141 |
//
|
StephaneLenclud@60
|
142 |
// columnHeaderTime
|
StephaneLenclud@60
|
143 |
//
|
StephaneLenclud@60
|
144 |
this.columnHeaderTime.Text = "Time";
|
StephaneLenclud@60
|
145 |
this.columnHeaderTime.Width = 76;
|
StephaneLenclud@60
|
146 |
//
|
StephaneLenclud@60
|
147 |
// tabPageDevices
|
StephaneLenclud@60
|
148 |
//
|
StephaneLenclud@72
|
149 |
this.tabPageDevices.Controls.Add(this.buttonRefresh);
|
StephaneLenclud@65
|
150 |
this.tabPageDevices.Controls.Add(this.buttonTreeViewExpandAll);
|
StephaneLenclud@65
|
151 |
this.tabPageDevices.Controls.Add(this.buttonTreeViewCollapseAll);
|
StephaneLenclud@60
|
152 |
this.tabPageDevices.Controls.Add(this.treeViewDevices);
|
StephaneLenclud@60
|
153 |
this.tabPageDevices.Location = new System.Drawing.Point(4, 22);
|
StephaneLenclud@60
|
154 |
this.tabPageDevices.Name = "tabPageDevices";
|
StephaneLenclud@60
|
155 |
this.tabPageDevices.Padding = new System.Windows.Forms.Padding(3);
|
StephaneLenclud@67
|
156 |
this.tabPageDevices.Size = new System.Drawing.Size(894, 506);
|
StephaneLenclud@60
|
157 |
this.tabPageDevices.TabIndex = 1;
|
StephaneLenclud@60
|
158 |
this.tabPageDevices.Text = "Devices";
|
StephaneLenclud@60
|
159 |
this.tabPageDevices.UseVisualStyleBackColor = true;
|
StephaneLenclud@60
|
160 |
//
|
StephaneLenclud@75
|
161 |
// buttonRefresh
|
StephaneLenclud@75
|
162 |
//
|
StephaneLenclud@75
|
163 |
this.buttonRefresh.Location = new System.Drawing.Point(813, 64);
|
StephaneLenclud@75
|
164 |
this.buttonRefresh.Name = "buttonRefresh";
|
StephaneLenclud@75
|
165 |
this.buttonRefresh.Size = new System.Drawing.Size(75, 23);
|
StephaneLenclud@75
|
166 |
this.buttonRefresh.TabIndex = 3;
|
StephaneLenclud@75
|
167 |
this.buttonRefresh.Text = "Refresh";
|
StephaneLenclud@75
|
168 |
this.buttonRefresh.UseVisualStyleBackColor = true;
|
StephaneLenclud@75
|
169 |
this.buttonRefresh.Click += new System.EventHandler(this.buttonRefresh_Click);
|
StephaneLenclud@75
|
170 |
//
|
StephaneLenclud@70
|
171 |
// buttonTreeViewExpandAll
|
StephaneLenclud@60
|
172 |
//
|
StephaneLenclud@70
|
173 |
this.buttonTreeViewExpandAll.Location = new System.Drawing.Point(813, 6);
|
StephaneLenclud@70
|
174 |
this.buttonTreeViewExpandAll.Name = "buttonTreeViewExpandAll";
|
StephaneLenclud@70
|
175 |
this.buttonTreeViewExpandAll.Size = new System.Drawing.Size(75, 23);
|
StephaneLenclud@70
|
176 |
this.buttonTreeViewExpandAll.TabIndex = 2;
|
StephaneLenclud@70
|
177 |
this.buttonTreeViewExpandAll.Text = "Expand All";
|
StephaneLenclud@70
|
178 |
this.buttonTreeViewExpandAll.UseVisualStyleBackColor = true;
|
StephaneLenclud@70
|
179 |
this.buttonTreeViewExpandAll.Click += new System.EventHandler(this.buttonTreeViewExpandAll_Click);
|
StephaneLenclud@60
|
180 |
//
|
StephaneLenclud@65
|
181 |
// buttonTreeViewCollapseAll
|
StephaneLenclud@65
|
182 |
//
|
StephaneLenclud@65
|
183 |
this.buttonTreeViewCollapseAll.Location = new System.Drawing.Point(813, 35);
|
StephaneLenclud@65
|
184 |
this.buttonTreeViewCollapseAll.Name = "buttonTreeViewCollapseAll";
|
StephaneLenclud@65
|
185 |
this.buttonTreeViewCollapseAll.Size = new System.Drawing.Size(75, 23);
|
StephaneLenclud@65
|
186 |
this.buttonTreeViewCollapseAll.TabIndex = 1;
|
StephaneLenclud@65
|
187 |
this.buttonTreeViewCollapseAll.Text = "Collapse All";
|
StephaneLenclud@65
|
188 |
this.buttonTreeViewCollapseAll.UseVisualStyleBackColor = true;
|
StephaneLenclud@65
|
189 |
this.buttonTreeViewCollapseAll.Click += new System.EventHandler(this.buttonTreeViewCollapseAll_Click);
|
StephaneLenclud@65
|
190 |
//
|
StephaneLenclud@70
|
191 |
// treeViewDevices
|
StephaneLenclud@65
|
192 |
//
|
StephaneLenclud@70
|
193 |
this.treeViewDevices.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
StephaneLenclud@70
|
194 |
| System.Windows.Forms.AnchorStyles.Left)));
|
StephaneLenclud@70
|
195 |
this.treeViewDevices.Location = new System.Drawing.Point(8, 6);
|
StephaneLenclud@70
|
196 |
this.treeViewDevices.Name = "treeViewDevices";
|
StephaneLenclud@70
|
197 |
this.treeViewDevices.Size = new System.Drawing.Size(713, 492);
|
StephaneLenclud@70
|
198 |
this.treeViewDevices.TabIndex = 0;
|
StephaneLenclud@65
|
199 |
//
|
StephaneLenclud@70
|
200 |
// tabPageTests
|
StephaneLenclud@70
|
201 |
//
|
StephaneLenclud@70
|
202 |
this.tabPageTests.Controls.Add(this.textBoxTests);
|
StephaneLenclud@70
|
203 |
this.tabPageTests.Location = new System.Drawing.Point(4, 22);
|
StephaneLenclud@70
|
204 |
this.tabPageTests.Name = "tabPageTests";
|
StephaneLenclud@70
|
205 |
this.tabPageTests.Size = new System.Drawing.Size(894, 506);
|
StephaneLenclud@70
|
206 |
this.tabPageTests.TabIndex = 2;
|
StephaneLenclud@70
|
207 |
this.tabPageTests.Text = "Tests";
|
StephaneLenclud@70
|
208 |
this.tabPageTests.UseVisualStyleBackColor = true;
|
StephaneLenclud@70
|
209 |
//
|
StephaneLenclud@70
|
210 |
// textBoxTests
|
StephaneLenclud@70
|
211 |
//
|
StephaneLenclud@70
|
212 |
this.textBoxTests.Location = new System.Drawing.Point(4, 4);
|
StephaneLenclud@70
|
213 |
this.textBoxTests.Multiline = true;
|
StephaneLenclud@70
|
214 |
this.textBoxTests.Name = "textBoxTests";
|
StephaneLenclud@70
|
215 |
this.textBoxTests.Size = new System.Drawing.Size(887, 499);
|
StephaneLenclud@70
|
216 |
this.textBoxTests.TabIndex = 0;
|
StephaneLenclud@70
|
217 |
//
|
StephaneLenclud@72
|
218 |
// statusStrip
|
StephaneLenclud@72
|
219 |
//
|
StephaneLenclud@72
|
220 |
this.statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
StephaneLenclud@72
|
221 |
this.toolStripStatusLabelDevice});
|
StephaneLenclud@72
|
222 |
this.statusStrip.Location = new System.Drawing.Point(0, 547);
|
StephaneLenclud@72
|
223 |
this.statusStrip.Name = "statusStrip";
|
StephaneLenclud@72
|
224 |
this.statusStrip.Size = new System.Drawing.Size(935, 22);
|
StephaneLenclud@72
|
225 |
this.statusStrip.TabIndex = 5;
|
StephaneLenclud@72
|
226 |
this.statusStrip.Text = "statusStrip1";
|
StephaneLenclud@72
|
227 |
//
|
StephaneLenclud@72
|
228 |
// toolStripStatusLabelDevice
|
StephaneLenclud@72
|
229 |
//
|
StephaneLenclud@72
|
230 |
this.toolStripStatusLabelDevice.Name = "toolStripStatusLabelDevice";
|
StephaneLenclud@72
|
231 |
this.toolStripStatusLabelDevice.Size = new System.Drawing.Size(61, 17);
|
StephaneLenclud@72
|
232 |
this.toolStripStatusLabelDevice.Text = "No Device";
|
StephaneLenclud@72
|
233 |
//
|
StephaneLenclud@60
|
234 |
// MainForm
|
StephaneLenclud@60
|
235 |
//
|
StephaneLenclud@60
|
236 |
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
|
StephaneLenclud@60
|
237 |
this.BackColor = System.Drawing.SystemColors.Control;
|
StephaneLenclud@67
|
238 |
this.ClientSize = new System.Drawing.Size(935, 569);
|
StephaneLenclud@67
|
239 |
this.Controls.Add(this.statusStrip);
|
StephaneLenclud@60
|
240 |
this.Controls.Add(this.tabControl);
|
StephaneLenclud@60
|
241 |
this.Name = "MainForm";
|
StephaneLenclud@75
|
242 |
this.Text = "HID Demo";
|
StephaneLenclud@60
|
243 |
this.Load += new System.EventHandler(this.MainForm_Load);
|
StephaneLenclud@60
|
244 |
this.tabControl.ResumeLayout(false);
|
StephaneLenclud@60
|
245 |
this.tabPageMessages.ResumeLayout(false);
|
StephaneLenclud@60
|
246 |
this.tabPageDevices.ResumeLayout(false);
|
StephaneLenclud@72
|
247 |
this.tabPageTests.ResumeLayout(false);
|
StephaneLenclud@72
|
248 |
this.tabPageTests.PerformLayout();
|
StephaneLenclud@67
|
249 |
this.statusStrip.ResumeLayout(false);
|
StephaneLenclud@67
|
250 |
this.statusStrip.PerformLayout();
|
StephaneLenclud@60
|
251 |
this.ResumeLayout(false);
|
StephaneLenclud@67
|
252 |
this.PerformLayout();
|
StephaneLenclud@60
|
253 |
|
StephaneLenclud@60
|
254 |
}
|
StephaneLenclud@60
|
255 |
#endregion Windows Form Designer generated code
|
StephaneLenclud@60
|
256 |
|
StephaneLenclud@78
|
257 |
private System.Windows.Forms.Button buttonClear;
|
StephaneLenclud@78
|
258 |
private System.Windows.Forms.TabControl tabControl;
|
StephaneLenclud@78
|
259 |
private System.Windows.Forms.TabPage tabPageMessages;
|
StephaneLenclud@78
|
260 |
private System.Windows.Forms.ListView listViewEvents;
|
StephaneLenclud@78
|
261 |
private System.Windows.Forms.ColumnHeader columnHeaderUsages;
|
StephaneLenclud@78
|
262 |
private System.Windows.Forms.ColumnHeader columnHeaderInputReport;
|
StephaneLenclud@78
|
263 |
private System.Windows.Forms.ColumnHeader columnHeaderUsagePage;
|
StephaneLenclud@78
|
264 |
private System.Windows.Forms.ColumnHeader columnHeaderUsageCollection;
|
StephaneLenclud@78
|
265 |
private System.Windows.Forms.ColumnHeader columnHeaderRepeat;
|
StephaneLenclud@78
|
266 |
private System.Windows.Forms.ColumnHeader columnHeaderTime;
|
StephaneLenclud@78
|
267 |
private System.Windows.Forms.TabPage tabPageDevices;
|
StephaneLenclud@78
|
268 |
private System.Windows.Forms.TreeView treeViewDevices;
|
StephaneLenclud@65
|
269 |
private System.Windows.Forms.Button buttonTreeViewExpandAll;
|
StephaneLenclud@65
|
270 |
private System.Windows.Forms.Button buttonTreeViewCollapseAll;
|
StephaneLenclud@67
|
271 |
private System.Windows.Forms.StatusStrip statusStrip;
|
StephaneLenclud@67
|
272 |
private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabelDevice;
|
StephaneLenclud@70
|
273 |
private System.Windows.Forms.TabPage tabPageTests;
|
StephaneLenclud@70
|
274 |
private System.Windows.Forms.TextBox textBoxTests;
|
StephaneLenclud@72
|
275 |
private System.Windows.Forms.Button buttonRefresh;
|
StephaneLenclud@65
|
276 |
|
StephaneLenclud@60
|
277 |
}
|
StephaneLenclud@60
|
278 |
}
|