Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 3547 was 3474, checked in by gkronber, 15 years ago

Incorporated review comments by swagner into plugin infrastructure. #989 (Implement review comments in plugin infrastructure)

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