Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/HeuristicLab.Clients.Hive.Administrator/3.3/Views/HiveAdministratorView.Designer.cs @ 17180

Last change on this file since 17180 was 17180, checked in by swagner, 5 years ago

#2875: Removed years in copyrights

File size: 5.7 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 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
22namespace 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.tabResources = new System.Windows.Forms.TabPage();
32      this.resourcesView = new HeuristicLab.Clients.Hive.Administrator.Views.ResourcesView();
33      this.tabProjects = new System.Windows.Forms.TabPage();
34      this.imageListUsers = new System.Windows.Forms.ImageList(this.components);
35      this.projectsView = new HeuristicLab.Clients.Hive.Administrator.Views.ProjectsView();
36      this.tabAdmin.SuspendLayout();
37      this.tabResources.SuspendLayout();
38      this.tabProjects.SuspendLayout();
39      this.SuspendLayout();
40      //
41      // tabAdmin
42      //
43      this.tabAdmin.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
44            | System.Windows.Forms.AnchorStyles.Left)
45            | System.Windows.Forms.AnchorStyles.Right)));
46      this.tabAdmin.Controls.Add(this.tabResources);
47      this.tabAdmin.Controls.Add(this.tabProjects);
48      this.tabAdmin.Location = new System.Drawing.Point(3, 0);
49      this.tabAdmin.Name = "tabAdmin";
50      this.tabAdmin.SelectedIndex = 0;
51      this.tabAdmin.Size = new System.Drawing.Size(742, 546);
52      this.tabAdmin.TabIndex = 0;
53      //
54      // tabResources
55      //
56      this.tabResources.Controls.Add(this.resourcesView);
57      this.tabResources.Location = new System.Drawing.Point(4, 22);
58      this.tabResources.Name = "tabResources";
59      this.tabResources.Padding = new System.Windows.Forms.Padding(3);
60      this.tabResources.Size = new System.Drawing.Size(734, 520);
61      this.tabResources.TabIndex = 3;
62      this.tabResources.Text = "Resources";
63      this.tabResources.UseVisualStyleBackColor = true;
64      //
65      // resourcesView
66      //
67      this.resourcesView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
68            | System.Windows.Forms.AnchorStyles.Left)
69            | System.Windows.Forms.AnchorStyles.Right)));
70      this.resourcesView.Caption = "ResourcesView";
71      this.resourcesView.Content = null;
72      this.resourcesView.Location = new System.Drawing.Point(0, 0);
73      this.resourcesView.Name = "resourcesView";
74      this.resourcesView.ReadOnly = false;
75      this.resourcesView.Size = new System.Drawing.Size(734, 520);
76      this.resourcesView.TabIndex = 0;
77      //
78      // tabProjects
79      //
80      this.tabProjects.Controls.Add(this.projectsView);
81      this.tabProjects.Location = new System.Drawing.Point(4, 22);
82      this.tabProjects.Name = "tabProjects";
83      this.tabProjects.Size = new System.Drawing.Size(734, 520);
84      this.tabProjects.TabIndex = 4;
85      this.tabProjects.Text = "Projects";
86      this.tabProjects.UseVisualStyleBackColor = true;
87      //
88      // imageListUsers
89      //
90      this.imageListUsers.ColorDepth = System.Windows.Forms.ColorDepth.Depth32Bit;
91      this.imageListUsers.ImageSize = new System.Drawing.Size(16, 16);
92      this.imageListUsers.TransparentColor = System.Drawing.Color.Transparent;
93      //
94      // projectsView
95      //
96      this.projectsView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
97            | System.Windows.Forms.AnchorStyles.Left)
98            | System.Windows.Forms.AnchorStyles.Right)));
99      this.projectsView.Caption = "Resources View";
100      this.projectsView.Content = null;
101      this.projectsView.Location = new System.Drawing.Point(0, 0);
102      this.projectsView.Name = "projectsView";
103      this.projectsView.ReadOnly = false;
104      this.projectsView.Size = new System.Drawing.Size(734, 520);
105      this.projectsView.TabIndex = 0;
106      //
107      // HiveAdministratorView
108      //
109      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
110      this.Controls.Add(this.tabAdmin);
111      this.Name = "HiveAdministratorView";
112      this.Size = new System.Drawing.Size(745, 546);
113      this.tabAdmin.ResumeLayout(false);
114      this.tabResources.ResumeLayout(false);
115      this.tabProjects.ResumeLayout(false);
116      this.ResumeLayout(false);
117
118    }
119
120    #endregion
121
122    private System.ComponentModel.IContainer components;
123    private System.Windows.Forms.ImageList imageListUsers;
124    private System.Windows.Forms.TabPage tabResources;
125    private System.Windows.Forms.TabPage tabProjects;
126    private ProjectsView projectsView;
127  }
128}
Note: See TracBrowser for help on using the repository browser.