1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
4 | *
|
---|
5 | * This file is part of HeuristicLab.
|
---|
6 | *
|
---|
7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
8 | * it under the terms of the GNU General Public License as published by
|
---|
9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
10 | * (at your option) any later version.
|
---|
11 | *
|
---|
12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
15 | * GNU General Public License for more details.
|
---|
16 | *
|
---|
17 | * You should have received a copy of the GNU General Public License
|
---|
18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
19 | */
|
---|
20 | #endregion
|
---|
21 |
|
---|
22 | namespace HeuristicLab.Clients.Hive.Administrator.Views {
|
---|
23 | partial class HiveAdministratorView {
|
---|
24 | private System.Windows.Forms.TabControl tabAdmin;
|
---|
25 | private HeuristicLab.Clients.Hive.Administrator.Views.ResourcesView resourcesView;
|
---|
26 |
|
---|
27 | #region Component Designer generated code
|
---|
28 | private void InitializeComponent() {
|
---|
29 | this.components = new System.ComponentModel.Container();
|
---|
30 | this.tabAdmin = new System.Windows.Forms.TabControl();
|
---|
31 | this.tabSlaves = new System.Windows.Forms.TabPage();
|
---|
32 | this.imageListUsers = new System.Windows.Forms.ImageList(this.components);
|
---|
33 | this.resourcesView = new HeuristicLab.Clients.Hive.Administrator.Views.ResourcesView();
|
---|
34 | this.tabAdmin.SuspendLayout();
|
---|
35 | this.tabSlaves.SuspendLayout();
|
---|
36 | this.SuspendLayout();
|
---|
37 | //
|
---|
38 | // tabAdmin
|
---|
39 | //
|
---|
40 | this.tabAdmin.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
41 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
42 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
43 | this.tabAdmin.Controls.Add(this.tabSlaves);
|
---|
44 | this.tabAdmin.Location = new System.Drawing.Point(3, 0);
|
---|
45 | this.tabAdmin.Name = "tabAdmin";
|
---|
46 | this.tabAdmin.SelectedIndex = 0;
|
---|
47 | this.tabAdmin.Size = new System.Drawing.Size(742, 546);
|
---|
48 | this.tabAdmin.TabIndex = 0;
|
---|
49 | //
|
---|
50 | // tabSlaves
|
---|
51 | //
|
---|
52 | this.tabSlaves.Controls.Add(this.resourcesView);
|
---|
53 | this.tabSlaves.Location = new System.Drawing.Point(4, 22);
|
---|
54 | this.tabSlaves.Name = "tabSlaves";
|
---|
55 | this.tabSlaves.Padding = new System.Windows.Forms.Padding(3);
|
---|
56 | this.tabSlaves.Size = new System.Drawing.Size(734, 520);
|
---|
57 | this.tabSlaves.TabIndex = 3;
|
---|
58 | this.tabSlaves.Text = "Slaves";
|
---|
59 | this.tabSlaves.UseVisualStyleBackColor = true;
|
---|
60 | //
|
---|
61 | // imageListUsers
|
---|
62 | //
|
---|
63 | this.imageListUsers.ColorDepth = System.Windows.Forms.ColorDepth.Depth32Bit;
|
---|
64 | this.imageListUsers.ImageSize = new System.Drawing.Size(16, 16);
|
---|
65 | this.imageListUsers.TransparentColor = System.Drawing.Color.Transparent;
|
---|
66 | //
|
---|
67 | // resourcesView
|
---|
68 | //
|
---|
69 | this.resourcesView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
70 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
71 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
72 | this.resourcesView.Caption = "ResourcesView";
|
---|
73 | this.resourcesView.Content = null;
|
---|
74 | this.resourcesView.Location = new System.Drawing.Point(0, 0);
|
---|
75 | this.resourcesView.Name = "resourcesView";
|
---|
76 | this.resourcesView.ReadOnly = false;
|
---|
77 | this.resourcesView.Size = new System.Drawing.Size(734, 520);
|
---|
78 | this.resourcesView.TabIndex = 0;
|
---|
79 | //
|
---|
80 | // HiveAdministrationView
|
---|
81 | //
|
---|
82 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
83 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
84 | this.Controls.Add(this.tabAdmin);
|
---|
85 | this.Name = "HiveAdministrationView";
|
---|
86 | this.Size = new System.Drawing.Size(745, 546);
|
---|
87 | this.tabAdmin.ResumeLayout(false);
|
---|
88 | this.tabSlaves.ResumeLayout(false);
|
---|
89 | this.ResumeLayout(false);
|
---|
90 |
|
---|
91 | }
|
---|
92 |
|
---|
93 | #endregion
|
---|
94 |
|
---|
95 | private System.ComponentModel.IContainer components;
|
---|
96 | private System.Windows.Forms.ImageList imageListUsers;
|
---|
97 | private System.Windows.Forms.TabPage tabSlaves;
|
---|
98 |
|
---|
99 | }
|
---|
100 | }
|
---|