-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPassword Generator.Designer.cs
More file actions
128 lines (124 loc) · 4.64 KB
/
Password Generator.Designer.cs
File metadata and controls
128 lines (124 loc) · 4.64 KB
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
namespace PasswordGenerator
{
partial class Form1
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
button1 = new Button();
listBox1 = new ListBox();
button2 = new Button();
textBox1 = new TextBox();
pictureBox1 = new PictureBox();
label1 = new Label();
((System.ComponentModel.ISupportInitialize)pictureBox1).BeginInit();
SuspendLayout();
//
// button1
//
button1.Location = new Point(12, 55);
button1.Name = "button1";
button1.Size = new Size(268, 29);
button1.TabIndex = 2;
button1.Text = "Generate";
button1.UseVisualStyleBackColor = true;
button1.Click += button1_Click;
//
// listBox1
//
listBox1.FormattingEnabled = true;
listBox1.ItemHeight = 15;
listBox1.Location = new Point(12, 92);
listBox1.Name = "listBox1";
listBox1.Size = new Size(268, 289);
listBox1.TabIndex = 3;
//
// button2
//
button2.Location = new Point(12, 389);
button2.Name = "button2";
button2.Size = new Size(268, 37);
button2.TabIndex = 4;
button2.Text = "Copy selected password";
button2.UseVisualStyleBackColor = true;
button2.Click += button2_Click;
//
// textBox1
//
textBox1.Location = new Point(227, 61);
textBox1.Name = "textBox1";
textBox1.Size = new Size(100, 23);
textBox1.TabIndex = 5;
textBox1.Visible = false;
//
// pictureBox1
//
pictureBox1.Image = Properties.Resources.Info;
pictureBox1.Location = new Point(244, 12);
pictureBox1.Name = "pictureBox1";
pictureBox1.Size = new Size(36, 34);
pictureBox1.SizeMode = PictureBoxSizeMode.Zoom;
pictureBox1.TabIndex = 6;
pictureBox1.TabStop = false;
pictureBox1.Click += pictureBox1_Click;
//
// label1
//
label1.AutoSize = true;
label1.Font = new Font("Segoe UI", 12F, FontStyle.Bold, GraphicsUnit.Point);
label1.Location = new Point(12, 12);
label1.Name = "label1";
label1.Size = new Size(197, 21);
label1.TabIndex = 7;
label1.Text = "Password Generator v1.0";
//
// Form1
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(292, 434);
Controls.Add(label1);
Controls.Add(pictureBox1);
Controls.Add(button2);
Controls.Add(listBox1);
Controls.Add(button1);
Controls.Add(textBox1);
FormBorderStyle = FormBorderStyle.FixedToolWindow;
Icon = (Icon)resources.GetObject("$this.Icon");
Name = "Form1";
StartPosition = FormStartPosition.CenterScreen;
Text = "Password Generator";
((System.ComponentModel.ISupportInitialize)pictureBox1).EndInit();
ResumeLayout(false);
PerformLayout();
}
#endregion
private Button button1;
private ListBox listBox1;
private Button button2;
private TextBox textBox1;
private PictureBox pictureBox1;
private Label label1;
}
}