Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HiveProjectManagement/HeuristicLab.Clients.Hive.JobManager/3.3/Views/HiveResourceSelector.Designer.cs @ 15401

Last change on this file since 15401 was 15401, checked in by jkarder, 7 years ago

#2839:

  • worked on hive administrator view
  • updated service clients
File size: 8.5 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2016 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.JobManager.Views {
23  partial class HiveProjectSelector {
24    /// <summary>
25    /// Required designer variable.
26    /// </summary>
27    private System.ComponentModel.IContainer components = null;
28
29    /// <summary>
30    /// Clean up any resources being used.
31    /// </summary>
32    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
33    protected override void Dispose(bool disposing) {
34      if (disposing && (components != null)) {
35        components.Dispose();
36      }
37      base.Dispose(disposing);
38    }
39
40    #region Component Designer generated code
41
42    /// <summary>
43    /// Required method for Designer support - do not modify
44    /// the contents of this method with the code editor.
45    /// </summary>
46    private void InitializeComponent() {
47      this.components = new System.ComponentModel.Container();
48      this.resourcesGroupBox = new System.Windows.Forms.GroupBox();
49      this.splitContainer = new System.Windows.Forms.SplitContainer();
50      this.resourcesTreeView = new System.Windows.Forms.TreeView();
51      this.imageList = new System.Windows.Forms.ImageList(this.components);
52      this.searchLabel = new System.Windows.Forms.Label();
53      this.searchTextBox = new System.Windows.Forms.TextBox();
54      this.descriptionTextBox = new System.Windows.Forms.TextBox();
55      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
56      this.resourcesGroupBox.SuspendLayout();
57      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
58      this.splitContainer.Panel1.SuspendLayout();
59      this.splitContainer.Panel2.SuspendLayout();
60      this.splitContainer.SuspendLayout();
61      this.SuspendLayout();
62      //
63      // resourcesGroupBox
64      //
65      this.resourcesGroupBox.Controls.Add(this.splitContainer);
66      this.resourcesGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
67      this.resourcesGroupBox.Location = new System.Drawing.Point(0, 0);
68      this.resourcesGroupBox.Name = "resourcesGroupBox";
69      this.resourcesGroupBox.Size = new System.Drawing.Size(308, 365);
70      this.resourcesGroupBox.TabIndex = 0;
71      this.resourcesGroupBox.TabStop = false;
72      this.resourcesGroupBox.Text = "Available Projects";
73      //
74      // splitContainer
75      //
76      this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
77      this.splitContainer.Location = new System.Drawing.Point(3, 16);
78      this.splitContainer.Name = "splitContainer";
79      this.splitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
80      //
81      // splitContainer.Panel1
82      //
83      this.splitContainer.Panel1.Controls.Add(this.resourcesTreeView);
84      this.splitContainer.Panel1.Controls.Add(this.searchLabel);
85      this.splitContainer.Panel1.Controls.Add(this.searchTextBox);
86      //
87      // splitContainer.Panel2
88      //
89      this.splitContainer.Panel2.Controls.Add(this.descriptionTextBox);
90      this.splitContainer.Size = new System.Drawing.Size(302, 346);
91      this.splitContainer.SplitterDistance = 219;
92      this.splitContainer.TabIndex = 0;
93      //
94      // resourcesTreeView
95      //
96      this.resourcesTreeView.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.resourcesTreeView.CheckBoxes = true;
100      this.resourcesTreeView.HideSelection = false;
101      this.resourcesTreeView.ImageIndex = 0;
102      this.resourcesTreeView.ImageList = this.imageList;
103      this.resourcesTreeView.Location = new System.Drawing.Point(3, 29);
104      this.resourcesTreeView.Name = "resourcesTreeView";
105      this.resourcesTreeView.SelectedImageIndex = 0;
106      this.resourcesTreeView.ShowNodeToolTips = true;
107      this.resourcesTreeView.Size = new System.Drawing.Size(296, 196);
108      this.resourcesTreeView.TabIndex = 2;
109      this.resourcesTreeView.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.resourcesTreeView_AfterCheck);
110      this.resourcesTreeView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.resourcesTreeView_AfterSelect);
111      //
112      // imageList
113      //
114      this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
115      this.imageList.ImageSize = new System.Drawing.Size(16, 16);
116      this.imageList.TransparentColor = System.Drawing.Color.Transparent;
117      //
118      // searchLabel
119      //
120      this.searchLabel.Image = HeuristicLab.Common.Resources.VSImageLibrary.Zoom;
121      this.searchLabel.Location = new System.Drawing.Point(3, 3);
122      this.searchLabel.Name = "searchLabel";
123      this.searchLabel.Size = new System.Drawing.Size(20, 20);
124      this.searchLabel.TabIndex = 0;
125      this.toolTip.SetToolTip(this.searchLabel, "Enter string to search for resources");
126      //
127      // searchTextBox
128      //
129      this.searchTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
130            | System.Windows.Forms.AnchorStyles.Right)));
131      this.searchTextBox.Location = new System.Drawing.Point(29, 3);
132      this.searchTextBox.Name = "searchTextBox";
133      this.searchTextBox.Size = new System.Drawing.Size(270, 20);
134      this.searchTextBox.TabIndex = 1;
135      this.toolTip.SetToolTip(this.searchTextBox, "Enter string to search for resources");
136      this.searchTextBox.TextChanged += new System.EventHandler(this.searchTextBox_TextChanged);
137      //
138      // descriptionTextBox
139      //
140      this.descriptionTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
141            | System.Windows.Forms.AnchorStyles.Left)
142            | System.Windows.Forms.AnchorStyles.Right)));
143      this.descriptionTextBox.Font = new System.Drawing.Font("Courier New", 8.25F);
144      this.descriptionTextBox.Location = new System.Drawing.Point(3, 3);
145      this.descriptionTextBox.Multiline = true;
146      this.descriptionTextBox.Name = "descriptionTextBox";
147      this.descriptionTextBox.ReadOnly = true;
148      this.descriptionTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Both;
149      this.descriptionTextBox.Size = new System.Drawing.Size(296, 108);
150      this.descriptionTextBox.TabIndex = 0;
151      this.descriptionTextBox.WordWrap = false;
152      //
153      // HiveResourceSelector
154      //
155      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
156      this.Controls.Add(this.resourcesGroupBox);
157      this.Name = "HiveResourceSelector";
158      this.Size = new System.Drawing.Size(308, 365);
159      this.resourcesGroupBox.ResumeLayout(false);
160      this.splitContainer.Panel1.ResumeLayout(false);
161      this.splitContainer.Panel1.PerformLayout();
162      this.splitContainer.Panel2.ResumeLayout(false);
163      this.splitContainer.Panel2.PerformLayout();
164      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
165      this.splitContainer.ResumeLayout(false);
166      this.ResumeLayout(false);
167
168    }
169
170    #endregion
171
172    protected System.Windows.Forms.GroupBox resourcesGroupBox;
173    protected System.Windows.Forms.SplitContainer splitContainer;
174    protected System.Windows.Forms.Label searchLabel;
175    protected System.Windows.Forms.TextBox searchTextBox;
176    protected System.Windows.Forms.TreeView resourcesTreeView;
177    protected System.Windows.Forms.TextBox descriptionTextBox;
178    protected System.Windows.Forms.ImageList imageList;
179    protected System.Windows.Forms.ToolTip toolTip;
180
181  }
182}
Note: See TracBrowser for help on using the repository browser.