Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2839_HiveProjectManagement/HeuristicLab.Clients.Hive.JobManager/3.3/Views/HiveResourceSelectorDialog.Designer.cs @ 15933

Last change on this file since 15933 was 15933, checked in by jzenisek, 6 years ago

#2839: several fixes

  • rebuilt run in hive
  • adapted numeric selector (added FixedNumericUpDown.cs)
File size: 6.4 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 HiveResourceSelectorDialog {
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 Windows Form 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.okButton = new System.Windows.Forms.Button();
48      this.cancelButton = new System.Windows.Forms.Button();
49      this.refreshButton = new System.Windows.Forms.Button();
50      this.hiveResourceSelector = new HeuristicLab.Clients.Hive.JobManager.Views.HiveProjectSelector();
51      this.SuspendLayout();
52      //
53      // okButton
54      //
55      this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
56      this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
57      this.okButton.Enabled = false;
58      this.okButton.Location = new System.Drawing.Point(405, 609);
59      this.okButton.Name = "okButton";
60      this.okButton.Size = new System.Drawing.Size(75, 23);
61      this.okButton.TabIndex = 1;
62      this.okButton.Text = "&OK";
63      this.okButton.UseVisualStyleBackColor = true;
64      //
65      // cancelButton
66      //
67      this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
68      this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
69      this.cancelButton.Location = new System.Drawing.Point(486, 609);
70      this.cancelButton.Name = "cancelButton";
71      this.cancelButton.Size = new System.Drawing.Size(75, 23);
72      this.cancelButton.TabIndex = 2;
73      this.cancelButton.Text = "&Cancel";
74      this.cancelButton.UseVisualStyleBackColor = true;
75      //
76      // refreshButton
77      //
78      this.refreshButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
79      this.refreshButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Refresh;
80      this.refreshButton.Location = new System.Drawing.Point(12, 608);
81      this.refreshButton.Name = "refreshButton";
82      this.refreshButton.Size = new System.Drawing.Size(24, 24);
83      this.refreshButton.TabIndex = 3;
84      this.refreshButton.UseVisualStyleBackColor = true;
85      this.refreshButton.Click += new System.EventHandler(this.refreshButton_Click);
86      //
87      // hiveResourceSelector
88      //
89      this.hiveResourceSelector.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
90            | System.Windows.Forms.AnchorStyles.Left)
91            | System.Windows.Forms.AnchorStyles.Right)));
92      this.hiveResourceSelector.Caption = "View";
93      this.hiveResourceSelector.Content = null;
94      this.hiveResourceSelector.JobId = new System.Guid("00000000-0000-0000-0000-000000000000");
95      this.hiveResourceSelector.Location = new System.Drawing.Point(12, 12);
96      this.hiveResourceSelector.Name = "hiveResourceSelector";
97      this.hiveResourceSelector.ProjectId = null;
98      this.hiveResourceSelector.ReadOnly = false;
99      this.hiveResourceSelector.SelectedProject = null;
100      this.hiveResourceSelector.SelectedProjectId = null;
101      this.hiveResourceSelector.SelectedResourceIds = null;
102      this.hiveResourceSelector.Size = new System.Drawing.Size(549, 591);
103      this.hiveResourceSelector.TabIndex = 0;
104      this.hiveResourceSelector.SelectedProjectChanged += new System.EventHandler(this.hiveResourceSelector_SelectedProjectChanged);
105      this.hiveResourceSelector.AssignedResourcesChanged += new System.EventHandler(this.hiveResourceSelector_SelectedResourcesChanged);
106      this.hiveResourceSelector.ProjectsTreeViewDoubleClicked += new System.EventHandler(this.hiveResourceSelector_ProjectsTreeViewDoubleClicked);
107      //
108      // HiveResourceSelectorDialog
109      //
110      this.AcceptButton = this.okButton;
111      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
112      this.CancelButton = this.cancelButton;
113      this.ClientSize = new System.Drawing.Size(573, 644);
114      this.Controls.Add(this.refreshButton);
115      this.Controls.Add(this.hiveResourceSelector);
116      this.Controls.Add(this.cancelButton);
117      this.Controls.Add(this.okButton);
118      this.MaximizeBox = false;
119      this.MinimizeBox = false;
120      this.Name = "HiveResourceSelectorDialog";
121      this.ShowIcon = false;
122      this.ShowInTaskbar = false;
123      this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
124      this.Text = "Select Project";
125      this.Load += new System.EventHandler(this.HiveResourceSelectorDialog_Load);
126      this.ResumeLayout(false);
127
128    }
129
130    #endregion
131
132    protected System.Windows.Forms.Button okButton;
133    protected System.Windows.Forms.Button cancelButton;
134    protected System.Windows.Forms.Button refreshButton;
135    protected HiveProjectSelector hiveResourceSelector;
136  }
137}
Note: See TracBrowser for help on using the repository browser.