-
Notifications
You must be signed in to change notification settings - Fork 0
/
Form1.Designer.cs
100 lines (93 loc) · 4.52 KB
/
Form1.Designer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
namespace PasswordGenerator
{
partial class Form1
{
/// <summary>
/// Erforderliche Designervariable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Verwendete Ressourcen bereinigen.
/// </summary>
/// <param name="disposing">True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Vom Windows Form-Designer generierter Code
/// <summary>
/// Erforderliche Methode für die Designerunterstützung.
/// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
/// </summary>
private void InitializeComponent()
{
this.label1 = new System.Windows.Forms.Label();
this.PasswordLengthLabel = new System.Windows.Forms.Label();
this.passwordLengthSlider = new System.Windows.Forms.TrackBar();
this.CopyPasswordButton = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.passwordLengthSlider)).BeginInit();
this.SuspendLayout();
//
// label1
//
this.label1.Font = new System.Drawing.Font("Leelawadee UI", 26.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label1.Location = new System.Drawing.Point(216, 44);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(498, 91);
this.label1.TabIndex = 0;
this.label1.Text = "label1";
//
// PasswordLengthLabel
//
this.PasswordLengthLabel.Font = new System.Drawing.Font("Leelawadee UI", 26.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.PasswordLengthLabel.Location = new System.Drawing.Point(216, 225);
this.PasswordLengthLabel.Name = "PasswordLengthLabel";
this.PasswordLengthLabel.Size = new System.Drawing.Size(498, 91);
this.PasswordLengthLabel.TabIndex = 1;
this.PasswordLengthLabel.Text = "Password Length: 5";
//
// passwordLengthSlider
//
this.passwordLengthSlider.Location = new System.Drawing.Point(224, 319);
this.passwordLengthSlider.Name = "passwordLengthSlider";
this.passwordLengthSlider.Size = new System.Drawing.Size(490, 45);
this.passwordLengthSlider.TabIndex = 2;
this.passwordLengthSlider.Scroll += new System.EventHandler(this.passwordLengthSlider_Scroll);
//
// CopyPasswordButton
//
this.CopyPasswordButton.Location = new System.Drawing.Point(224, 397);
this.CopyPasswordButton.Name = "CopyPasswordButton";
this.CopyPasswordButton.Size = new System.Drawing.Size(490, 41);
this.CopyPasswordButton.TabIndex = 3;
this.CopyPasswordButton.Text = "Copy Password";
this.CopyPasswordButton.UseVisualStyleBackColor = true;
this.CopyPasswordButton.Click += new System.EventHandler(this.CopyPasswordButton_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.Pink;
this.ClientSize = new System.Drawing.Size(902, 499);
this.Controls.Add(this.CopyPasswordButton);
this.Controls.Add(this.passwordLengthSlider);
this.Controls.Add(this.PasswordLengthLabel);
this.Controls.Add(this.label1);
this.Name = "Form1";
this.Text = "Form1";
((System.ComponentModel.ISupportInitialize)(this.passwordLengthSlider)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label PasswordLengthLabel;
private System.Windows.Forms.TrackBar passwordLengthSlider;
private System.Windows.Forms.Button CopyPasswordButton;
}
}