1 | namespace HeuristicLab.Clients.Hive.JobManager.Views {
|
---|
2 | partial class HiveJobPermissionView {
|
---|
3 | /// <summary>
|
---|
4 | /// Required designer variable.
|
---|
5 | /// </summary>
|
---|
6 | private System.ComponentModel.IContainer components = null;
|
---|
7 |
|
---|
8 | /// <summary>
|
---|
9 | /// Clean up any resources being used.
|
---|
10 | /// </summary>
|
---|
11 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
12 | protected override void Dispose(bool disposing) {
|
---|
13 | if (disposing && (components != null)) {
|
---|
14 | components.Dispose();
|
---|
15 | }
|
---|
16 | base.Dispose(disposing);
|
---|
17 | }
|
---|
18 |
|
---|
19 | #region Component Designer generated code
|
---|
20 |
|
---|
21 | /// <summary>
|
---|
22 | /// Required method for Designer support - do not modify
|
---|
23 | /// the contents of this method with the code editor.
|
---|
24 | /// </summary>
|
---|
25 | private void InitializeComponent() {
|
---|
26 | this.usernameLabel = new System.Windows.Forms.Label();
|
---|
27 | this.permissionLabel = new System.Windows.Forms.Label();
|
---|
28 | this.usernameTextBox = new System.Windows.Forms.TextBox();
|
---|
29 | this.permissionComboBox = new System.Windows.Forms.ComboBox();
|
---|
30 | this.SuspendLayout();
|
---|
31 | //
|
---|
32 | // storeButton
|
---|
33 | //
|
---|
34 | this.toolTip.SetToolTip(this.storeButton, "Store Data");
|
---|
35 | //
|
---|
36 | // usernameLabel
|
---|
37 | //
|
---|
38 | this.usernameLabel.AutoSize = true;
|
---|
39 | this.usernameLabel.Location = new System.Drawing.Point(3, 27);
|
---|
40 | this.usernameLabel.Name = "usernameLabel";
|
---|
41 | this.usernameLabel.Size = new System.Drawing.Size(58, 13);
|
---|
42 | this.usernameLabel.TabIndex = 1;
|
---|
43 | this.usernameLabel.Text = "Username:";
|
---|
44 | //
|
---|
45 | // permissionLabel
|
---|
46 | //
|
---|
47 | this.permissionLabel.AutoSize = true;
|
---|
48 | this.permissionLabel.Location = new System.Drawing.Point(4, 57);
|
---|
49 | this.permissionLabel.Name = "permissionLabel";
|
---|
50 | this.permissionLabel.Size = new System.Drawing.Size(60, 13);
|
---|
51 | this.permissionLabel.TabIndex = 2;
|
---|
52 | this.permissionLabel.Text = "Permission:";
|
---|
53 | //
|
---|
54 | // usernameTextBox
|
---|
55 | //
|
---|
56 | this.usernameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
57 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
58 | this.usernameTextBox.Location = new System.Drawing.Point(70, 28);
|
---|
59 | this.usernameTextBox.Name = "usernameTextBox";
|
---|
60 | this.usernameTextBox.Size = new System.Drawing.Size(281, 20);
|
---|
61 | this.usernameTextBox.TabIndex = 3;
|
---|
62 | this.usernameTextBox.TextChanged += new System.EventHandler(this.usernameTextBox_TextChanged);
|
---|
63 | //
|
---|
64 | // permissionComboBox
|
---|
65 | //
|
---|
66 | this.permissionComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
67 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
68 | this.permissionComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
---|
69 | this.permissionComboBox.FormattingEnabled = true;
|
---|
70 | this.permissionComboBox.Location = new System.Drawing.Point(70, 54);
|
---|
71 | this.permissionComboBox.Name = "permissionComboBox";
|
---|
72 | this.permissionComboBox.Size = new System.Drawing.Size(281, 21);
|
---|
73 | this.permissionComboBox.TabIndex = 4;
|
---|
74 | this.permissionComboBox.SelectedValueChanged += new System.EventHandler(this.permissionComboBox_SelectedValueChanged);
|
---|
75 | //
|
---|
76 | // HiveJobPermissionView
|
---|
77 | //
|
---|
78 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
79 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
80 | this.Controls.Add(this.usernameLabel);
|
---|
81 | this.Controls.Add(this.permissionComboBox);
|
---|
82 | this.Controls.Add(this.permissionLabel);
|
---|
83 | this.Controls.Add(this.usernameTextBox);
|
---|
84 | this.Name = "HiveJobPermissionView";
|
---|
85 | this.Controls.SetChildIndex(this.usernameTextBox, 0);
|
---|
86 | this.Controls.SetChildIndex(this.permissionLabel, 0);
|
---|
87 | this.Controls.SetChildIndex(this.permissionComboBox, 0);
|
---|
88 | this.Controls.SetChildIndex(this.usernameLabel, 0);
|
---|
89 | this.Controls.SetChildIndex(this.storeButton, 0);
|
---|
90 | this.ResumeLayout(false);
|
---|
91 | this.PerformLayout();
|
---|
92 |
|
---|
93 | }
|
---|
94 | #endregion
|
---|
95 |
|
---|
96 | private System.Windows.Forms.Label usernameLabel;
|
---|
97 | private System.Windows.Forms.Label permissionLabel;
|
---|
98 | private System.Windows.Forms.TextBox usernameTextBox;
|
---|
99 | private System.Windows.Forms.ComboBox permissionComboBox;
|
---|
100 | }
|
---|
101 | }
|
---|