Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Server.Console/HiveServerManagementConsole.Designer.cs @ 1037

Last change on this file since 1037 was 1037, checked in by aleitner, 15 years ago

Refactoring Tab-order, renaming (#380)

File size: 18.6 KB
Line 
1namespace HeuristicLab.Hive.Server.Console {
2  partial class HiveServerManagementConsole {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Windows Form Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
26      this.components = new System.ComponentModel.Container();
27      System.Windows.Forms.ListViewItem listViewItem2 = new System.Windows.Forms.ListViewItem(new string[] {
28            "",
29            "Test"}, -1);
30      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(HiveServerManagementConsole));
31      this.menuStrip1 = new System.Windows.Forms.MenuStrip();
32      this.informationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
33      this.closeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
34      this.addToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
35      this.jobToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
36      this.userToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
37      this.userToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
38      this.groupToolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
39      this.tcManagementConsole = new System.Windows.Forms.TabControl();
40      this.tpClientControl = new System.Windows.Forms.TabPage();
41      this.scClientControl = new System.Windows.Forms.SplitContainer();
42      this.tvClientControl = new System.Windows.Forms.TreeView();
43      this.lvClientControl = new System.Windows.Forms.ListView();
44      this.ilClientControl = new System.Windows.Forms.ImageList(this.components);
45      this.tpJobControl = new System.Windows.Forms.TabPage();
46      this.scJobControl = new System.Windows.Forms.SplitContainer();
47      this.tvJobControl = new System.Windows.Forms.TreeView();
48      this.lvJobControl = new System.Windows.Forms.ListView();
49      this.ilJobControl = new System.Windows.Forms.ImageList(this.components);
50      this.tpUserControl = new System.Windows.Forms.TabPage();
51      this.scUserControl = new System.Windows.Forms.SplitContainer();
52      this.tvUserControl = new System.Windows.Forms.TreeView();
53      this.lvUserControl = new System.Windows.Forms.ListView();
54      this.ilUserControl = new System.Windows.Forms.ImageList(this.components);
55      this.treeView2 = new System.Windows.Forms.TreeView();
56      this.listView2 = new System.Windows.Forms.ListView();
57      this.timerSyncronize = new System.Windows.Forms.Timer(this.components);
58      this.menuStrip1.SuspendLayout();
59      this.tcManagementConsole.SuspendLayout();
60      this.tpClientControl.SuspendLayout();
61      this.scClientControl.Panel1.SuspendLayout();
62      this.scClientControl.Panel2.SuspendLayout();
63      this.scClientControl.SuspendLayout();
64      this.tpJobControl.SuspendLayout();
65      this.scJobControl.Panel1.SuspendLayout();
66      this.scJobControl.Panel2.SuspendLayout();
67      this.scJobControl.SuspendLayout();
68      this.tpUserControl.SuspendLayout();
69      this.scUserControl.Panel1.SuspendLayout();
70      this.scUserControl.Panel2.SuspendLayout();
71      this.scUserControl.SuspendLayout();
72      this.SuspendLayout();
73      //
74      // menuStrip1
75      //
76      this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
77            this.informationToolStripMenuItem,
78            this.addToolStripMenuItem});
79      this.menuStrip1.Location = new System.Drawing.Point(0, 0);
80      this.menuStrip1.Name = "menuStrip1";
81      this.menuStrip1.Size = new System.Drawing.Size(651, 24);
82      this.menuStrip1.TabIndex = 0;
83      this.menuStrip1.Text = "menuStrip1";
84      //
85      // informationToolStripMenuItem
86      //
87      this.informationToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
88            this.closeToolStripMenuItem});
89      this.informationToolStripMenuItem.Name = "informationToolStripMenuItem";
90      this.informationToolStripMenuItem.Size = new System.Drawing.Size(81, 20);
91      this.informationToolStripMenuItem.Text = "Management";
92      //
93      // closeToolStripMenuItem
94      //
95      this.closeToolStripMenuItem.Name = "closeToolStripMenuItem";
96      this.closeToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
97      this.closeToolStripMenuItem.Text = "Close";
98      this.closeToolStripMenuItem.Click += new System.EventHandler(this.Close_Click);
99      //
100      // addToolStripMenuItem
101      //
102      this.addToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
103            this.jobToolStripMenuItem,
104            this.userToolStripMenuItem});
105      this.addToolStripMenuItem.Name = "addToolStripMenuItem";
106      this.addToolStripMenuItem.Size = new System.Drawing.Size(38, 20);
107      this.addToolStripMenuItem.Text = "Add";
108      //
109      // jobToolStripMenuItem
110      //
111      this.jobToolStripMenuItem.Name = "jobToolStripMenuItem";
112      this.jobToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
113      this.jobToolStripMenuItem.Text = "Job";
114      this.jobToolStripMenuItem.Click += new System.EventHandler(this.JobToolStripMenuItem1_Click);
115      //
116      // userToolStripMenuItem
117      //
118      this.userToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
119            this.userToolStripMenuItem1,
120            this.groupToolStripMenuItem2});
121      this.userToolStripMenuItem.Name = "userToolStripMenuItem";
122      this.userToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
123      this.userToolStripMenuItem.Text = "User";
124      //
125      // userToolStripMenuItem1
126      //
127      this.userToolStripMenuItem1.Name = "userToolStripMenuItem1";
128      this.userToolStripMenuItem1.Size = new System.Drawing.Size(152, 22);
129      this.userToolStripMenuItem1.Text = "User";
130      this.userToolStripMenuItem1.Click += new System.EventHandler(this.UserToolStripMenuItem1_Click);
131      //
132      // groupToolStripMenuItem2
133      //
134      this.groupToolStripMenuItem2.Name = "groupToolStripMenuItem2";
135      this.groupToolStripMenuItem2.Size = new System.Drawing.Size(152, 22);
136      this.groupToolStripMenuItem2.Text = "Group";
137      this.groupToolStripMenuItem2.Click += new System.EventHandler(this.GroupToolStripMenuItem2_Click);
138      //
139      // tcManagementConsole
140      //
141      this.tcManagementConsole.Controls.Add(this.tpClientControl);
142      this.tcManagementConsole.Controls.Add(this.tpJobControl);
143      this.tcManagementConsole.Controls.Add(this.tpUserControl);
144      this.tcManagementConsole.Dock = System.Windows.Forms.DockStyle.Fill;
145      this.tcManagementConsole.Location = new System.Drawing.Point(0, 24);
146      this.tcManagementConsole.Name = "tcManagementConsole";
147      this.tcManagementConsole.SelectedIndex = 0;
148      this.tcManagementConsole.Size = new System.Drawing.Size(651, 378);
149      this.tcManagementConsole.TabIndex = 1;
150      //
151      // tpClientControl
152      //
153      this.tpClientControl.AllowDrop = true;
154      this.tpClientControl.Controls.Add(this.scClientControl);
155      this.tpClientControl.Location = new System.Drawing.Point(4, 22);
156      this.tpClientControl.Name = "tpClientControl";
157      this.tpClientControl.Padding = new System.Windows.Forms.Padding(3);
158      this.tpClientControl.Size = new System.Drawing.Size(643, 352);
159      this.tpClientControl.TabIndex = 0;
160      this.tpClientControl.Text = "Client Control";
161      this.tpClientControl.UseVisualStyleBackColor = true;
162      //
163      // scClientControl
164      //
165      this.scClientControl.Dock = System.Windows.Forms.DockStyle.Fill;
166      this.scClientControl.Location = new System.Drawing.Point(3, 3);
167      this.scClientControl.Name = "scClientControl";
168      //
169      // scClientControl.Panel1
170      //
171      this.scClientControl.Panel1.Controls.Add(this.tvClientControl);
172      //
173      // scClientControl.Panel2
174      //
175      this.scClientControl.Panel2.Controls.Add(this.lvClientControl);
176      this.scClientControl.Size = new System.Drawing.Size(637, 346);
177      this.scClientControl.SplitterDistance = 139;
178      this.scClientControl.TabIndex = 0;
179      //
180      // tvClientControl
181      //
182      this.tvClientControl.Dock = System.Windows.Forms.DockStyle.Fill;
183      this.tvClientControl.Location = new System.Drawing.Point(0, 0);
184      this.tvClientControl.Name = "tvClientControl";
185      this.tvClientControl.Size = new System.Drawing.Size(139, 346);
186      this.tvClientControl.TabIndex = 0;
187      //
188      // lvClientControl
189      //
190      this.lvClientControl.AllowDrop = true;
191      this.lvClientControl.Dock = System.Windows.Forms.DockStyle.Fill;
192      this.lvClientControl.ImeMode = System.Windows.Forms.ImeMode.Off;
193      this.lvClientControl.Items.AddRange(new System.Windows.Forms.ListViewItem[] {
194            listViewItem2});
195      this.lvClientControl.LargeImageList = this.ilClientControl;
196      this.lvClientControl.Location = new System.Drawing.Point(0, 0);
197      this.lvClientControl.Name = "lvClientControl";
198      this.lvClientControl.Size = new System.Drawing.Size(494, 346);
199      this.lvClientControl.TabIndex = 0;
200      this.lvClientControl.UseCompatibleStateImageBehavior = false;
201      //
202      // ilClientControl
203      //
204      this.ilClientControl.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("ilClientControl.ImageStream")));
205      this.ilClientControl.TransparentColor = System.Drawing.Color.Transparent;
206      this.ilClientControl.Images.SetKeyName(0, "monitor-green.png");
207      this.ilClientControl.Images.SetKeyName(1, "monitor-orange.png");
208      this.ilClientControl.Images.SetKeyName(2, "monitor-red.png");
209      //
210      // tpJobControl
211      //
212      this.tpJobControl.Controls.Add(this.scJobControl);
213      this.tpJobControl.Location = new System.Drawing.Point(4, 22);
214      this.tpJobControl.Name = "tpJobControl";
215      this.tpJobControl.Padding = new System.Windows.Forms.Padding(3);
216      this.tpJobControl.Size = new System.Drawing.Size(643, 352);
217      this.tpJobControl.TabIndex = 1;
218      this.tpJobControl.Text = "Job Control";
219      this.tpJobControl.UseVisualStyleBackColor = true;
220      //
221      // scJobControl
222      //
223      this.scJobControl.Dock = System.Windows.Forms.DockStyle.Fill;
224      this.scJobControl.Location = new System.Drawing.Point(3, 3);
225      this.scJobControl.Name = "scJobControl";
226      //
227      // scJobControl.Panel1
228      //
229      this.scJobControl.Panel1.Controls.Add(this.tvJobControl);
230      //
231      // scJobControl.Panel2
232      //
233      this.scJobControl.Panel2.Controls.Add(this.lvJobControl);
234      this.scJobControl.Size = new System.Drawing.Size(637, 346);
235      this.scJobControl.SplitterDistance = 139;
236      this.scJobControl.TabIndex = 1;
237      //
238      // tvJobControl
239      //
240      this.tvJobControl.Dock = System.Windows.Forms.DockStyle.Fill;
241      this.tvJobControl.Location = new System.Drawing.Point(0, 0);
242      this.tvJobControl.Name = "tvJobControl";
243      this.tvJobControl.Size = new System.Drawing.Size(139, 346);
244      this.tvJobControl.TabIndex = 2;
245      //
246      // lvJobControl
247      //
248      this.lvJobControl.AllowDrop = true;
249      this.lvJobControl.Dock = System.Windows.Forms.DockStyle.Fill;
250      this.lvJobControl.LargeImageList = this.ilJobControl;
251      this.lvJobControl.Location = new System.Drawing.Point(0, 0);
252      this.lvJobControl.Name = "lvJobControl";
253      this.lvJobControl.Size = new System.Drawing.Size(494, 346);
254      this.lvJobControl.TabIndex = 0;
255      this.lvJobControl.UseCompatibleStateImageBehavior = false;
256      //
257      // ilJobControl
258      //
259      this.ilJobControl.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("ilJobControl.ImageStream")));
260      this.ilJobControl.TransparentColor = System.Drawing.Color.Transparent;
261      this.ilJobControl.Images.SetKeyName(0, "PlayHS.bmp");
262      //
263      // tpUserControl
264      //
265      this.tpUserControl.Controls.Add(this.scUserControl);
266      this.tpUserControl.Location = new System.Drawing.Point(4, 22);
267      this.tpUserControl.Name = "tpUserControl";
268      this.tpUserControl.Padding = new System.Windows.Forms.Padding(3);
269      this.tpUserControl.Size = new System.Drawing.Size(643, 352);
270      this.tpUserControl.TabIndex = 2;
271      this.tpUserControl.Text = "User Control";
272      this.tpUserControl.UseVisualStyleBackColor = true;
273      //
274      // scUserControl
275      //
276      this.scUserControl.Dock = System.Windows.Forms.DockStyle.Fill;
277      this.scUserControl.Location = new System.Drawing.Point(3, 3);
278      this.scUserControl.Name = "scUserControl";
279      //
280      // scUserControl.Panel1
281      //
282      this.scUserControl.Panel1.Controls.Add(this.tvUserControl);
283      //
284      // scUserControl.Panel2
285      //
286      this.scUserControl.Panel2.Controls.Add(this.lvUserControl);
287      this.scUserControl.Size = new System.Drawing.Size(637, 346);
288      this.scUserControl.SplitterDistance = 139;
289      this.scUserControl.TabIndex = 1;
290      //
291      // tvUserControl
292      //
293      this.tvUserControl.Dock = System.Windows.Forms.DockStyle.Fill;
294      this.tvUserControl.Location = new System.Drawing.Point(0, 0);
295      this.tvUserControl.Name = "tvUserControl";
296      this.tvUserControl.Size = new System.Drawing.Size(139, 346);
297      this.tvUserControl.TabIndex = 1;
298      //
299      // lvUserControl
300      //
301      this.lvUserControl.AllowDrop = true;
302      this.lvUserControl.Dock = System.Windows.Forms.DockStyle.Fill;
303      this.lvUserControl.LargeImageList = this.ilUserControl;
304      this.lvUserControl.Location = new System.Drawing.Point(0, 0);
305      this.lvUserControl.Name = "lvUserControl";
306      this.lvUserControl.Size = new System.Drawing.Size(494, 346);
307      this.lvUserControl.TabIndex = 1;
308      this.lvUserControl.UseCompatibleStateImageBehavior = false;
309      //
310      // ilUserControl
311      //
312      this.ilUserControl.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("ilUserControl.ImageStream")));
313      this.ilUserControl.TransparentColor = System.Drawing.Color.Transparent;
314      this.ilUserControl.Images.SetKeyName(0, "Users.png");
315      //
316      // treeView2
317      //
318      this.treeView2.Dock = System.Windows.Forms.DockStyle.Fill;
319      this.treeView2.LineColor = System.Drawing.Color.Empty;
320      this.treeView2.Location = new System.Drawing.Point(0, 0);
321      this.treeView2.Name = "treeView2";
322      this.treeView2.Size = new System.Drawing.Size(139, 346);
323      this.treeView2.TabIndex = 0;
324      //
325      // listView2
326      //
327      this.listView2.Dock = System.Windows.Forms.DockStyle.Fill;
328      this.listView2.Location = new System.Drawing.Point(0, 0);
329      this.listView2.Name = "listView2";
330      this.listView2.Size = new System.Drawing.Size(494, 346);
331      this.listView2.TabIndex = 0;
332      this.listView2.UseCompatibleStateImageBehavior = false;
333      //
334      // timerSyncronize
335      //
336      this.timerSyncronize.Interval = 10000;
337      //
338      // HiveServerManagementConsole
339      //
340      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
341      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
342      this.ClientSize = new System.Drawing.Size(651, 402);
343      this.Controls.Add(this.tcManagementConsole);
344      this.Controls.Add(this.menuStrip1);
345      this.MainMenuStrip = this.menuStrip1;
346      this.Name = "HiveServerManagementConsole";
347      this.Text = "Management Console";
348      this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.HiveServerConsoleInformation_FormClosing);
349      this.menuStrip1.ResumeLayout(false);
350      this.menuStrip1.PerformLayout();
351      this.tcManagementConsole.ResumeLayout(false);
352      this.tpClientControl.ResumeLayout(false);
353      this.scClientControl.Panel1.ResumeLayout(false);
354      this.scClientControl.Panel2.ResumeLayout(false);
355      this.scClientControl.ResumeLayout(false);
356      this.tpJobControl.ResumeLayout(false);
357      this.scJobControl.Panel1.ResumeLayout(false);
358      this.scJobControl.Panel2.ResumeLayout(false);
359      this.scJobControl.ResumeLayout(false);
360      this.tpUserControl.ResumeLayout(false);
361      this.scUserControl.Panel1.ResumeLayout(false);
362      this.scUserControl.Panel2.ResumeLayout(false);
363      this.scUserControl.ResumeLayout(false);
364      this.ResumeLayout(false);
365      this.PerformLayout();
366
367    }
368
369    #endregion
370
371    private System.Windows.Forms.MenuStrip menuStrip1;
372    private System.Windows.Forms.ToolStripMenuItem informationToolStripMenuItem;
373    private System.Windows.Forms.ToolStripMenuItem closeToolStripMenuItem;
374    private System.Windows.Forms.TabControl tcManagementConsole;
375    private System.Windows.Forms.TabPage tpClientControl;
376    private System.Windows.Forms.TabPage tpJobControl;
377    private System.Windows.Forms.SplitContainer scClientControl;
378    private System.Windows.Forms.TabPage tpUserControl;
379    private System.Windows.Forms.TreeView tvClientControl;
380    private System.Windows.Forms.ListView lvClientControl;
381    private System.Windows.Forms.SplitContainer scJobControl;
382    private System.Windows.Forms.ListView lvJobControl;
383    private System.Windows.Forms.SplitContainer scUserControl;
384    private System.Windows.Forms.TreeView treeView2;
385    private System.Windows.Forms.ListView listView2;
386    private System.Windows.Forms.TreeView tvJobControl;
387    private System.Windows.Forms.TreeView tvUserControl;
388    private System.Windows.Forms.ListView lvUserControl;
389    private System.Windows.Forms.ImageList ilClientControl;
390    private System.Windows.Forms.ToolStripMenuItem addToolStripMenuItem;
391    private System.Windows.Forms.ToolStripMenuItem jobToolStripMenuItem;
392    private System.Windows.Forms.ToolStripMenuItem userToolStripMenuItem;
393    private System.Windows.Forms.ToolStripMenuItem userToolStripMenuItem1;
394    private System.Windows.Forms.ToolStripMenuItem groupToolStripMenuItem2;
395    private System.Windows.Forms.ImageList ilUserControl;
396    private System.Windows.Forms.Timer timerSyncronize;
397    private System.Windows.Forms.ImageList ilJobControl;
398  }
399}
Note: See TracBrowser for help on using the repository browser.