Free cookie consent management tool by TermsFeed Policy Generator

source: stable/HeuristicLab.Clients.Hive.JobManager/3.3/Views/HiveJobPermissionView.Designer.cs @ 18025

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

#2875: Merged r17180 from trunk to stable

File size: 5.2 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.JobManager.Views {
23  partial class HiveJobPermissionView {
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.usernameLabel = new System.Windows.Forms.Label();
48      this.permissionLabel = new System.Windows.Forms.Label();
49      this.usernameTextBox = new System.Windows.Forms.TextBox();
50      this.permissionComboBox = new System.Windows.Forms.ComboBox();
51      this.SuspendLayout();
52      //
53      // storeButton
54      //
55      this.toolTip.SetToolTip(this.storeButton, "Store Data");
56      //
57      // usernameLabel
58      //
59      this.usernameLabel.AutoSize = true;
60      this.usernameLabel.Location = new System.Drawing.Point(3, 27);
61      this.usernameLabel.Name = "usernameLabel";
62      this.usernameLabel.Size = new System.Drawing.Size(58, 13);
63      this.usernameLabel.TabIndex = 1;
64      this.usernameLabel.Text = "Username:";
65      //
66      // permissionLabel
67      //
68      this.permissionLabel.AutoSize = true;
69      this.permissionLabel.Location = new System.Drawing.Point(4, 57);
70      this.permissionLabel.Name = "permissionLabel";
71      this.permissionLabel.Size = new System.Drawing.Size(60, 13);
72      this.permissionLabel.TabIndex = 2;
73      this.permissionLabel.Text = "Permission:";
74      //
75      // usernameTextBox
76      //
77      this.usernameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
78                  | System.Windows.Forms.AnchorStyles.Right)));
79      this.usernameTextBox.Location = new System.Drawing.Point(70, 28);
80      this.usernameTextBox.Name = "usernameTextBox";
81      this.usernameTextBox.Size = new System.Drawing.Size(281, 20);
82      this.usernameTextBox.TabIndex = 3;
83      this.usernameTextBox.TextChanged += new System.EventHandler(this.usernameTextBox_TextChanged);
84      //
85      // permissionComboBox
86      //
87      this.permissionComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
88                  | System.Windows.Forms.AnchorStyles.Right)));
89      this.permissionComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
90      this.permissionComboBox.FormattingEnabled = true;
91      this.permissionComboBox.Location = new System.Drawing.Point(70, 54);
92      this.permissionComboBox.Name = "permissionComboBox";
93      this.permissionComboBox.Size = new System.Drawing.Size(281, 21);
94      this.permissionComboBox.TabIndex = 4;
95      this.permissionComboBox.SelectedValueChanged += new System.EventHandler(this.permissionComboBox_SelectedValueChanged);
96      //
97      // HiveJobPermissionView
98      //
99      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
100      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
101      this.Controls.Add(this.usernameLabel);
102      this.Controls.Add(this.permissionComboBox);
103      this.Controls.Add(this.permissionLabel);
104      this.Controls.Add(this.usernameTextBox);
105      this.Name = "HiveJobPermissionView";
106      this.Controls.SetChildIndex(this.usernameTextBox, 0);
107      this.Controls.SetChildIndex(this.permissionLabel, 0);
108      this.Controls.SetChildIndex(this.permissionComboBox, 0);
109      this.Controls.SetChildIndex(this.usernameLabel, 0);
110      this.Controls.SetChildIndex(this.storeButton, 0);
111      this.ResumeLayout(false);
112      this.PerformLayout();
113
114    }
115    #endregion
116
117    private System.Windows.Forms.Label usernameLabel;
118    private System.Windows.Forms.Label permissionLabel;
119    private System.Windows.Forms.TextBox usernameTextBox;
120    private System.Windows.Forms.ComboBox permissionComboBox;
121  }
122}
Note: See TracBrowser for help on using the repository browser.