Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ClientUserManagement/HeuristicLab.Clients.Access.Views/3.3/UserViews/ChangePasswordDialog.Designer.cs @ 7942

Last change on this file since 7942 was 7611, checked in by ascheibe, 12 years ago

#1174 added a dialog for changing the user password

File size: 11.8 KB
Line 
1namespace HeuristicLab.Clients.Access.Views {
2  partial class ChangePasswordDialog {
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 Windows Form 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.components = new System.ComponentModel.Container();
27      this.oldPasswordTextBox = new System.Windows.Forms.TextBox();
28      this.label1 = new System.Windows.Forms.Label();
29      this.label2 = new System.Windows.Forms.Label();
30      this.label3 = new System.Windows.Forms.Label();
31      this.newPasswordTextBox = new System.Windows.Forms.TextBox();
32      this.retypedNewPasswordtextBox = new System.Windows.Forms.TextBox();
33      this.changePasswordButton = new System.Windows.Forms.Button();
34      this.cancelButton = new System.Windows.Forms.Button();
35      this.label4 = new System.Windows.Forms.Label();
36      this.userNameTextBox = new System.Windows.Forms.TextBox();
37      this.savePasswordCheckBox = new System.Windows.Forms.CheckBox();
38      this.label5 = new System.Windows.Forms.Label();
39      this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
40      this.progressBar = new System.Windows.Forms.ProgressBar();
41      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
42      this.SuspendLayout();
43      //
44      // oldPasswordTextBox
45      //
46      this.oldPasswordTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
47                  | System.Windows.Forms.AnchorStyles.Right)));
48      this.oldPasswordTextBox.Location = new System.Drawing.Point(149, 39);
49      this.oldPasswordTextBox.Name = "oldPasswordTextBox";
50      this.oldPasswordTextBox.PasswordChar = '*';
51      this.oldPasswordTextBox.Size = new System.Drawing.Size(232, 20);
52      this.oldPasswordTextBox.TabIndex = 0;
53      this.oldPasswordTextBox.UseSystemPasswordChar = true;
54      this.oldPasswordTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.oldPasswordTextBox_Validating);
55      this.oldPasswordTextBox.Validated += new System.EventHandler(this.oldPasswordTextBox_Validated);
56      //
57      // label1
58      //
59      this.label1.AutoSize = true;
60      this.label1.Location = new System.Drawing.Point(12, 42);
61      this.label1.Name = "label1";
62      this.label1.Size = new System.Drawing.Size(75, 13);
63      this.label1.TabIndex = 1;
64      this.label1.Text = "Old Password:";
65      //
66      // label2
67      //
68      this.label2.AutoSize = true;
69      this.label2.Location = new System.Drawing.Point(12, 68);
70      this.label2.Name = "label2";
71      this.label2.Size = new System.Drawing.Size(81, 13);
72      this.label2.TabIndex = 2;
73      this.label2.Text = "New Password:";
74      //
75      // label3
76      //
77      this.label3.AutoSize = true;
78      this.label3.Location = new System.Drawing.Point(12, 94);
79      this.label3.Name = "label3";
80      this.label3.Size = new System.Drawing.Size(116, 13);
81      this.label3.TabIndex = 3;
82      this.label3.Text = "Retype new Password:";
83      //
84      // newPasswordTextBox
85      //
86      this.newPasswordTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
87                  | System.Windows.Forms.AnchorStyles.Right)));
88      this.newPasswordTextBox.Location = new System.Drawing.Point(149, 65);
89      this.newPasswordTextBox.Name = "newPasswordTextBox";
90      this.newPasswordTextBox.PasswordChar = '*';
91      this.newPasswordTextBox.Size = new System.Drawing.Size(232, 20);
92      this.newPasswordTextBox.TabIndex = 4;
93      this.newPasswordTextBox.UseSystemPasswordChar = true;
94      this.newPasswordTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.newPasswordTextBox_Validating);
95      this.newPasswordTextBox.Validated += new System.EventHandler(this.newPasswordTextBox_Validated);
96      //
97      // retypedNewPasswordtextBox
98      //
99      this.retypedNewPasswordtextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
100                  | System.Windows.Forms.AnchorStyles.Right)));
101      this.retypedNewPasswordtextBox.Location = new System.Drawing.Point(149, 91);
102      this.retypedNewPasswordtextBox.Name = "retypedNewPasswordtextBox";
103      this.retypedNewPasswordtextBox.PasswordChar = '*';
104      this.retypedNewPasswordtextBox.Size = new System.Drawing.Size(232, 20);
105      this.retypedNewPasswordtextBox.TabIndex = 5;
106      this.retypedNewPasswordtextBox.UseSystemPasswordChar = true;
107      this.retypedNewPasswordtextBox.Validating += new System.ComponentModel.CancelEventHandler(this.retypedNewPasswordtextBox_Validating);
108      this.retypedNewPasswordtextBox.Validated += new System.EventHandler(this.retypedNewPasswordtextBox_Validated);
109      //
110      // changePasswordButton
111      //
112      this.changePasswordButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
113      this.changePasswordButton.Location = new System.Drawing.Point(192, 127);
114      this.changePasswordButton.Name = "changePasswordButton";
115      this.changePasswordButton.Size = new System.Drawing.Size(108, 23);
116      this.changePasswordButton.TabIndex = 6;
117      this.changePasswordButton.Text = "Change Password";
118      this.changePasswordButton.UseVisualStyleBackColor = true;
119      this.changePasswordButton.Click += new System.EventHandler(this.changePasswordButton_Click);
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;
125      this.cancelButton.Location = new System.Drawing.Point(306, 127);
126      this.cancelButton.Name = "cancelButton";
127      this.cancelButton.Size = new System.Drawing.Size(75, 23);
128      this.cancelButton.TabIndex = 7;
129      this.cancelButton.Text = "Cancel";
130      this.cancelButton.UseVisualStyleBackColor = true;
131      this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
132      //
133      // label4
134      //
135      this.label4.AutoSize = true;
136      this.label4.Location = new System.Drawing.Point(12, 16);
137      this.label4.Name = "label4";
138      this.label4.Size = new System.Drawing.Size(61, 13);
139      this.label4.TabIndex = 8;
140      this.label4.Text = "User name:";
141      //
142      // userNameTextBox
143      //
144      this.userNameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
145                  | System.Windows.Forms.AnchorStyles.Right)));
146      this.userNameTextBox.Location = new System.Drawing.Point(149, 13);
147      this.userNameTextBox.Name = "userNameTextBox";
148      this.userNameTextBox.Size = new System.Drawing.Size(232, 20);
149      this.userNameTextBox.TabIndex = 9;
150      this.userNameTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.userNameTextBox_Validating);
151      this.userNameTextBox.Validated += new System.EventHandler(this.userNameTextBox_Validated);
152      //
153      // savePasswordCheckBox
154      //
155      this.savePasswordCheckBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
156      this.savePasswordCheckBox.AutoSize = true;
157      this.savePasswordCheckBox.Location = new System.Drawing.Point(149, 132);
158      this.savePasswordCheckBox.Name = "savePasswordCheckBox";
159      this.savePasswordCheckBox.Size = new System.Drawing.Size(15, 14);
160      this.savePasswordCheckBox.TabIndex = 10;
161      this.savePasswordCheckBox.UseVisualStyleBackColor = true;
162      //
163      // label5
164      //
165      this.label5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
166      this.label5.AutoSize = true;
167      this.label5.Location = new System.Drawing.Point(13, 132);
168      this.label5.Name = "label5";
169      this.label5.Size = new System.Drawing.Size(84, 13);
170      this.label5.TabIndex = 11;
171      this.label5.Text = "Save Password:";
172      //
173      // errorProvider
174      //
175      this.errorProvider.ContainerControl = this;
176      //
177      // progressBar
178      //
179      this.progressBar.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
180                  | System.Windows.Forms.AnchorStyles.Left)
181                  | System.Windows.Forms.AnchorStyles.Right)));
182      this.progressBar.Location = new System.Drawing.Point(119, 60);
183      this.progressBar.Name = "progressBar";
184      this.progressBar.Size = new System.Drawing.Size(180, 26);
185      this.progressBar.Style = System.Windows.Forms.ProgressBarStyle.Continuous;
186      this.progressBar.TabIndex = 12;
187      this.progressBar.Visible = false;
188      //
189      // ChangePasswordDialog
190      //
191      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
192      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
193      this.CancelButton = this.cancelButton;
194      this.ClientSize = new System.Drawing.Size(402, 158);
195      this.Controls.Add(this.progressBar);
196      this.Controls.Add(this.label5);
197      this.Controls.Add(this.savePasswordCheckBox);
198      this.Controls.Add(this.userNameTextBox);
199      this.Controls.Add(this.label4);
200      this.Controls.Add(this.cancelButton);
201      this.Controls.Add(this.changePasswordButton);
202      this.Controls.Add(this.retypedNewPasswordtextBox);
203      this.Controls.Add(this.newPasswordTextBox);
204      this.Controls.Add(this.label3);
205      this.Controls.Add(this.label2);
206      this.Controls.Add(this.label1);
207      this.Controls.Add(this.oldPasswordTextBox);
208      this.MaximizeBox = false;
209      this.MinimizeBox = false;
210      this.Name = "ChangePasswordDialog";
211      this.ShowIcon = false;
212      this.ShowInTaskbar = false;
213      this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
214      this.Text = "Change Password";
215      this.Load += new System.EventHandler(this.ChangePasswordDialog_Load);
216      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
217      this.ResumeLayout(false);
218      this.PerformLayout();
219
220    }
221
222    #endregion
223
224    private System.Windows.Forms.TextBox oldPasswordTextBox;
225    private System.Windows.Forms.Label label1;
226    private System.Windows.Forms.Label label2;
227    private System.Windows.Forms.Label label3;
228    private System.Windows.Forms.TextBox newPasswordTextBox;
229    private System.Windows.Forms.TextBox retypedNewPasswordtextBox;
230    private System.Windows.Forms.Button changePasswordButton;
231    private System.Windows.Forms.Button cancelButton;
232    private System.Windows.Forms.Label label4;
233    private System.Windows.Forms.TextBox userNameTextBox;
234    private System.Windows.Forms.CheckBox savePasswordCheckBox;
235    private System.Windows.Forms.Label label5;
236    private System.Windows.Forms.ErrorProvider errorProvider;
237    private System.Windows.Forms.ProgressBar progressBar;
238  }
239}
Note: See TracBrowser for help on using the repository browser.