1 | namespace HeuristicLab.Clients.Access.Administration {
|
---|
2 | partial class PasswordDisplayDialog {
|
---|
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.okButton = new System.Windows.Forms.Button();
|
---|
27 | this.label1 = new System.Windows.Forms.Label();
|
---|
28 | this.passwordTextbox = new System.Windows.Forms.TextBox();
|
---|
29 | this.SuspendLayout();
|
---|
30 | //
|
---|
31 | // okButton
|
---|
32 | //
|
---|
33 | this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
34 | this.okButton.Location = new System.Drawing.Point(230, 32);
|
---|
35 | this.okButton.Name = "okButton";
|
---|
36 | this.okButton.Size = new System.Drawing.Size(75, 23);
|
---|
37 | this.okButton.TabIndex = 0;
|
---|
38 | this.okButton.Text = "OK";
|
---|
39 | this.okButton.UseVisualStyleBackColor = true;
|
---|
40 | this.okButton.Click += new System.EventHandler(this.okButton_Click);
|
---|
41 | //
|
---|
42 | // label1
|
---|
43 | //
|
---|
44 | this.label1.AutoSize = true;
|
---|
45 | this.label1.Location = new System.Drawing.Point(12, 9);
|
---|
46 | this.label1.Name = "label1";
|
---|
47 | this.label1.Size = new System.Drawing.Size(84, 13);
|
---|
48 | this.label1.TabIndex = 1;
|
---|
49 | this.label1.Text = "New Password: ";
|
---|
50 | //
|
---|
51 | // passwordTextbox
|
---|
52 | //
|
---|
53 | this.passwordTextbox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
54 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
55 | this.passwordTextbox.Location = new System.Drawing.Point(102, 6);
|
---|
56 | this.passwordTextbox.Name = "passwordTextbox";
|
---|
57 | this.passwordTextbox.Size = new System.Drawing.Size(203, 20);
|
---|
58 | this.passwordTextbox.TabIndex = 2;
|
---|
59 | //
|
---|
60 | // PasswordDisplayDialog
|
---|
61 | //
|
---|
62 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
63 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
64 | this.ClientSize = new System.Drawing.Size(317, 64);
|
---|
65 | this.Controls.Add(this.passwordTextbox);
|
---|
66 | this.Controls.Add(this.label1);
|
---|
67 | this.Controls.Add(this.okButton);
|
---|
68 | this.MaximizeBox = false;
|
---|
69 | this.MinimizeBox = false;
|
---|
70 | this.MinimumSize = new System.Drawing.Size(333, 102);
|
---|
71 | this.Name = "PasswordDisplayDialog";
|
---|
72 | this.ShowIcon = false;
|
---|
73 | this.ShowInTaskbar = false;
|
---|
74 | this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
---|
75 | this.Text = "New Password";
|
---|
76 | this.TopMost = true;
|
---|
77 | this.ResumeLayout(false);
|
---|
78 | this.PerformLayout();
|
---|
79 |
|
---|
80 | }
|
---|
81 |
|
---|
82 | #endregion
|
---|
83 |
|
---|
84 | private System.Windows.Forms.Button okButton;
|
---|
85 | private System.Windows.Forms.Label label1;
|
---|
86 | private System.Windows.Forms.TextBox passwordTextbox;
|
---|
87 | }
|
---|
88 | } |
---|