Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.ExperimentManager/3.4/Views/HiveExperimentPermissionView.Designer.cs @ 6479

Last change on this file since 6479 was 6479, checked in by cneumuel, 13 years ago

#1233

  • finished experiment sharing
  • added role for executing privileged jobs
  • refreshing experiments in experimentManager does not delete already downloaded jobs
  • moved some properties from HiveExperiment into RefreshableHiveExperiment
File size: 4.6 KB
RevLine 
[6463]1namespace HeuristicLab.Clients.Hive.ExperimentManager.Views {
2  partial class HiveExperimentPermissionView {
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(57, 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(67, 28);
59      this.usernameTextBox.Name = "usernameTextBox";
60      this.usernameTextBox.Size = new System.Drawing.Size(284, 20);
61      this.usernameTextBox.TabIndex = 3;
62      this.usernameTextBox.Validated += new System.EventHandler(this.usernameTextBox_Validated);
[6479]63      this.usernameTextBox.Validating += new System.ComponentModel.CancelEventHandler(usernameTextBox_Validating);
[6463]64      //
65      // permissionComboBox
66      //
67      this.permissionComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
68                  | System.Windows.Forms.AnchorStyles.Right)));
69      this.permissionComboBox.FormattingEnabled = true;
70      this.permissionComboBox.Location = new System.Drawing.Point(67, 54);
71      this.permissionComboBox.Name = "permissionComboBox";
72      this.permissionComboBox.Size = new System.Drawing.Size(284, 21);
73      this.permissionComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
74      this.permissionComboBox.TabIndex = 4;
75      this.permissionComboBox.Validated += new System.EventHandler(this.permissionComboBox_Validated);
[6479]76      this.permissionComboBox.Validating += new System.ComponentModel.CancelEventHandler(permissionComboBox_Validating);
[6463]77      //
78      // HiveExperimentPermissionView
79      //
80      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
81      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
82      this.Controls.Add(this.usernameLabel);
83      this.Controls.Add(this.permissionComboBox);
84      this.Controls.Add(this.permissionLabel);
85      this.Controls.Add(this.usernameTextBox);
86      this.Name = "HiveExperimentPermissionView";
87      this.Controls.SetChildIndex(this.usernameTextBox, 0);
88      this.Controls.SetChildIndex(this.permissionLabel, 0);
89      this.Controls.SetChildIndex(this.permissionComboBox, 0);
90      this.Controls.SetChildIndex(this.usernameLabel, 0);
91      this.Controls.SetChildIndex(this.storeButton, 0);
92      this.ResumeLayout(false);
93      this.PerformLayout();
94
95    }
96    #endregion
97
98    private System.Windows.Forms.Label usernameLabel;
99    private System.Windows.Forms.Label permissionLabel;
100    private System.Windows.Forms.TextBox usernameTextBox;
101    private System.Windows.Forms.ComboBox permissionComboBox;
102  }
103}
Note: See TracBrowser for help on using the repository browser.