Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.PluginInfrastructure/Advanced/ConnectionSetupView.Designer.cs @ 3190

Last change on this file since 3190 was 3090, checked in by gkronber, 14 years ago

Added license headers and set visibility to internal for the classes of the plugin manager. #891 (Refactor GUI for plugin management)

File size: 7.4 KB
Line 
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.PluginInfrastructure.Advanced {
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.urlTextBox = new System.Windows.Forms.TextBox();
47      this.urlLabel = new System.Windows.Forms.Label();
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.SuspendLayout();
56      //
57      // urlTextBox
58      //
59      this.urlTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
60                  | System.Windows.Forms.AnchorStyles.Right)));
61      this.urlTextBox.Location = new System.Drawing.Point(71, 3);
62      this.urlTextBox.Name = "urlTextBox";
63      this.urlTextBox.Size = new System.Drawing.Size(177, 20);
64      this.urlTextBox.TabIndex = 0;
65      //
66      // urlLabel
67      //
68      this.urlLabel.AutoSize = true;
69      this.urlLabel.Location = new System.Drawing.Point(3, 6);
70      this.urlLabel.Name = "urlLabel";
71      this.urlLabel.Size = new System.Drawing.Size(48, 13);
72      this.urlLabel.TabIndex = 1;
73      this.urlLabel.Text = "Address:";
74      //
75      // userLabel
76      //
77      this.userLabel.AutoSize = true;
78      this.userLabel.Location = new System.Drawing.Point(3, 32);
79      this.userLabel.Name = "userLabel";
80      this.userLabel.Size = new System.Drawing.Size(32, 13);
81      this.userLabel.TabIndex = 3;
82      this.userLabel.Text = "User:";
83      //
84      // userTextBox
85      //
86      this.userTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
87                  | System.Windows.Forms.AnchorStyles.Right)));
88      this.userTextBox.Location = new System.Drawing.Point(71, 29);
89      this.userTextBox.Name = "userTextBox";
90      this.userTextBox.Size = new System.Drawing.Size(177, 20);
91      this.userTextBox.TabIndex = 2;
92      //
93      // passwordLabel
94      //
95      this.passwordLabel.AutoSize = true;
96      this.passwordLabel.Location = new System.Drawing.Point(3, 58);
97      this.passwordLabel.Name = "passwordLabel";
98      this.passwordLabel.Size = new System.Drawing.Size(56, 13);
99      this.passwordLabel.TabIndex = 5;
100      this.passwordLabel.Text = "Password:";
101      //
102      // passwordTextBox
103      //
104      this.passwordTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
105                  | System.Windows.Forms.AnchorStyles.Right)));
106      this.passwordTextBox.Location = new System.Drawing.Point(71, 55);
107      this.passwordTextBox.Name = "passwordTextBox";
108      this.passwordTextBox.Size = new System.Drawing.Size(177, 20);
109      this.passwordTextBox.TabIndex = 4;
110      this.passwordTextBox.UseSystemPasswordChar = true;
111      //
112      // applyButton
113      //
114      this.applyButton.Location = new System.Drawing.Point(6, 104);
115      this.applyButton.Name = "applyButton";
116      this.applyButton.Size = new System.Drawing.Size(75, 23);
117      this.applyButton.TabIndex = 6;
118      this.applyButton.Text = "Apply";
119      this.applyButton.UseVisualStyleBackColor = true;
120      this.applyButton.Click += new System.EventHandler(this.applyButton_Click);
121      //
122      // savePasswordCheckbox
123      //
124      this.savePasswordCheckbox.AutoSize = true;
125      this.savePasswordCheckbox.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
126      this.savePasswordCheckbox.Location = new System.Drawing.Point(71, 81);
127      this.savePasswordCheckbox.Name = "savePasswordCheckbox";
128      this.savePasswordCheckbox.Size = new System.Drawing.Size(103, 17);
129      this.savePasswordCheckbox.TabIndex = 7;
130      this.savePasswordCheckbox.Text = "Save Password:";
131      this.savePasswordCheckbox.UseVisualStyleBackColor = true;
132      //
133      // cancelButton
134      //
135      this.cancelButton.Location = new System.Drawing.Point(87, 104);
136      this.cancelButton.Name = "cancelButton";
137      this.cancelButton.Size = new System.Drawing.Size(75, 23);
138      this.cancelButton.TabIndex = 8;
139      this.cancelButton.Text = "Cancel";
140      this.cancelButton.UseVisualStyleBackColor = true;
141      this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
142      //
143      // ConnectionSetupView
144      //
145      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
146      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
147      this.Controls.Add(this.cancelButton);
148      this.Controls.Add(this.savePasswordCheckbox);
149      this.Controls.Add(this.applyButton);
150      this.Controls.Add(this.passwordLabel);
151      this.Controls.Add(this.passwordTextBox);
152      this.Controls.Add(this.userLabel);
153      this.Controls.Add(this.userTextBox);
154      this.Controls.Add(this.urlLabel);
155      this.Controls.Add(this.urlTextBox);
156      this.Name = "ConnectionSetupView";
157      this.Size = new System.Drawing.Size(251, 132);
158      this.ResumeLayout(false);
159      this.PerformLayout();
160
161    }
162
163    #endregion
164
165    private System.Windows.Forms.TextBox urlTextBox;
166    private System.Windows.Forms.Label urlLabel;
167    private System.Windows.Forms.Label userLabel;
168    private System.Windows.Forms.TextBox userTextBox;
169    private System.Windows.Forms.Label passwordLabel;
170    private System.Windows.Forms.TextBox passwordTextBox;
171    private System.Windows.Forms.Button applyButton;
172    private System.Windows.Forms.CheckBox savePasswordCheckbox;
173    private System.Windows.Forms.Button cancelButton;
174  }
175}
Note: See TracBrowser for help on using the repository browser.