Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Experiment.Views/3.3/ConnectionSetupView.Designer.cs @ 4755

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

#1260

  • applied new cloning mechanism
  • changed role names
File size: 8.0 KB
RevLine 
[4342]1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 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
21namespace HeuristicLab.Hive.Experiment.Views {
22  partial class ConnectionSetupView {
23    /// <summary>
24    /// Required designer variable.
25    /// </summary>
26    private System.ComponentModel.IContainer components = null;
27
28    /// <summary>
29    /// Clean up any resources being used.
30    /// </summary>
31    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
32    protected override void Dispose(bool disposing) {
33      if (disposing && (components != null)) {
34        components.Dispose();
35      }
36      base.Dispose(disposing);
37    }
38
39    #region Component Designer generated code
40
41    /// <summary>
42    /// Required method for Designer support - do not modify
43    /// the contents of this method with the code editor.
44    /// </summary>
45    private void InitializeComponent() {
46      this.components = new System.ComponentModel.Container();
47      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ConnectionSetupView));
48      this.userLabel = new System.Windows.Forms.Label();
49      this.userTextBox = new System.Windows.Forms.TextBox();
50      this.passwordLabel = new System.Windows.Forms.Label();
51      this.passwordTextBox = new System.Windows.Forms.TextBox();
52      this.applyButton = new System.Windows.Forms.Button();
53      this.savePasswordCheckbox = new System.Windows.Forms.CheckBox();
54      this.cancelButton = new System.Windows.Forms.Button();
55      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
56      this.SuspendLayout();
57      //
58      // userLabel
59      //
60      this.userLabel.AutoSize = true;
[4755]61      this.userLabel.Location = new System.Drawing.Point(3, 6);
[4342]62      this.userLabel.Name = "userLabel";
63      this.userLabel.Size = new System.Drawing.Size(58, 13);
64      this.userLabel.TabIndex = 3;
65      this.userLabel.Text = "&Username:";
66      //
67      // userTextBox
68      //
69      this.userTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
70                  | System.Windows.Forms.AnchorStyles.Right)));
[4755]71      this.userTextBox.Location = new System.Drawing.Point(91, 3);
[4342]72      this.userTextBox.Name = "userTextBox";
[4755]73      this.userTextBox.Size = new System.Drawing.Size(189, 20);
[4342]74      this.userTextBox.TabIndex = 0;
75      this.toolTip.SetToolTip(this.userTextBox, "Username used to connect to the HeuristicLab plugin deployment service");
76      //
77      // passwordLabel
78      //
79      this.passwordLabel.AutoSize = true;
[4755]80      this.passwordLabel.Location = new System.Drawing.Point(3, 32);
[4342]81      this.passwordLabel.Name = "passwordLabel";
82      this.passwordLabel.Size = new System.Drawing.Size(56, 13);
83      this.passwordLabel.TabIndex = 5;
84      this.passwordLabel.Text = "&Password:";
85      //
86      // passwordTextBox
87      //
88      this.passwordTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
89                  | System.Windows.Forms.AnchorStyles.Right)));
[4755]90      this.passwordTextBox.Location = new System.Drawing.Point(91, 29);
[4342]91      this.passwordTextBox.Name = "passwordTextBox";
[4755]92      this.passwordTextBox.Size = new System.Drawing.Size(189, 20);
[4342]93      this.passwordTextBox.TabIndex = 1;
94      this.toolTip.SetToolTip(this.passwordTextBox, "Passwort used to connect to the HeuristicLab plugin deployment service");
95      this.passwordTextBox.UseSystemPasswordChar = true;
96      //
97      // applyButton
98      //
99      this.applyButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
[4755]100      this.applyButton.Location = new System.Drawing.Point(124, 79);
[4342]101      this.applyButton.Name = "applyButton";
102      this.applyButton.Size = new System.Drawing.Size(75, 23);
103      this.applyButton.TabIndex = 2;
104      this.applyButton.Text = "&OK";
105      this.toolTip.SetToolTip(this.applyButton, "Apply and save changes");
106      this.applyButton.UseVisualStyleBackColor = true;
107      this.applyButton.Click += new System.EventHandler(this.applyButton_Click);
108      //
109      // savePasswordCheckbox
110      //
111      this.savePasswordCheckbox.AutoSize = true;
112      this.savePasswordCheckbox.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
[4755]113      this.savePasswordCheckbox.Location = new System.Drawing.Point(3, 55);
[4342]114      this.savePasswordCheckbox.Name = "savePasswordCheckbox";
115      this.savePasswordCheckbox.Size = new System.Drawing.Size(103, 17);
116      this.savePasswordCheckbox.TabIndex = 2;
117      this.savePasswordCheckbox.Text = "&Save Password:";
118      this.toolTip.SetToolTip(this.savePasswordCheckbox, "Check to save the user credentials to disk");
119      this.savePasswordCheckbox.UseVisualStyleBackColor = true;
120      //
121      // cancelButton
122      //
123      this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
124      this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
[4755]125      this.cancelButton.Location = new System.Drawing.Point(205, 79);
[4342]126      this.cancelButton.Name = "cancelButton";
127      this.cancelButton.Size = new System.Drawing.Size(75, 23);
128      this.cancelButton.TabIndex = 3;
129      this.cancelButton.Text = "&Cancel";
130      this.toolTip.SetToolTip(this.cancelButton, "Cancel and revert changes");
131      this.cancelButton.UseVisualStyleBackColor = true;
132      this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
133      //
134      // ConnectionSetupView
135      //
136      this.AcceptButton = this.applyButton;
137      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
138      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
139      this.CancelButton = this.cancelButton;
[4755]140      this.ClientSize = new System.Drawing.Size(292, 114);
141      this.Controls.Add(this.userTextBox);
142      this.Controls.Add(this.userLabel);
[4342]143      this.Controls.Add(this.cancelButton);
[4755]144      this.Controls.Add(this.savePasswordCheckbox);
145      this.Controls.Add(this.passwordTextBox);
[4342]146      this.Controls.Add(this.applyButton);
[4755]147      this.Controls.Add(this.passwordLabel);
[4342]148      this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
149      this.MaximizeBox = false;
150      this.MinimizeBox = false;
151      this.Name = "ConnectionSetupView";
152      this.ShowInTaskbar = false;
153      this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
154      this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
155      this.Text = "Edit Hive Connection Settings";
156      this.ResumeLayout(false);
157      this.PerformLayout();
158
159    }
160
161    #endregion
162
163    private System.Windows.Forms.Label userLabel;
164    private System.Windows.Forms.TextBox userTextBox;
165    private System.Windows.Forms.Label passwordLabel;
166    private System.Windows.Forms.TextBox passwordTextBox;
167    private System.Windows.Forms.Button applyButton;
168    private System.Windows.Forms.CheckBox savePasswordCheckbox;
169    private System.Windows.Forms.Button cancelButton;
170    private System.Windows.Forms.ToolTip toolTip;
171  }
172}
Note: See TracBrowser for help on using the repository browser.