namespace Password_Manager { partial class GeneratePassword { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { passwordName = new TextBox(); label1 = new Label(); label2 = new Label(); passwordLength = new TextBox(); noSymbols = new CheckBox(); generate = new Button(); cancel = new Button(); SuspendLayout(); // // textBox1 // passwordName.Location = new Point(12, 33); passwordName.Name = "textBox1"; passwordName.PlaceholderText = "website.com"; passwordName.Size = new Size(156, 23); passwordName.TabIndex = 0; // // label1 // label1.AutoSize = true; label1.Location = new Point(12, 15); label1.Name = "label1"; label1.Size = new Size(39, 15); label1.TabIndex = 1; label1.Text = "Name"; // // label2 // label2.AutoSize = true; label2.Location = new Point(12, 59); label2.Name = "label2"; label2.Size = new Size(44, 15); label2.TabIndex = 2; label2.Text = "Length"; // // textBox2 // passwordLength.Location = new Point(12, 77); passwordLength.Name = "textBox2"; passwordLength.PlaceholderText = "16"; passwordLength.Size = new Size(156, 23); passwordLength.TabIndex = 3; // // checkBox1 // noSymbols.AutoSize = true; noSymbols.Location = new Point(12, 106); noSymbols.Name = "checkBox1"; noSymbols.Size = new Size(89, 19); noSymbols.TabIndex = 4; noSymbols.Text = "No symbols"; noSymbols.UseVisualStyleBackColor = true; // // button1 // generate.Location = new Point(93, 131); generate.Name = "button1"; generate.Size = new Size(75, 23); generate.TabIndex = 5; generate.Text = "Generate"; generate.UseVisualStyleBackColor = true; generate.Click += Generate; // // button2 // cancel.Location = new Point(12, 131); cancel.Name = "button2"; cancel.Size = new Size(75, 23); cancel.TabIndex = 6; cancel.Text = "Cancel"; cancel.UseVisualStyleBackColor = true; // // GeneratePassword // AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(187, 173); Controls.Add(cancel); Controls.Add(generate); Controls.Add(noSymbols); Controls.Add(passwordLength); Controls.Add(label2); Controls.Add(label1); Controls.Add(passwordName); Name = "GeneratePassword"; ResumeLayout(false); PerformLayout(); } private void Generate_Click(object sender, EventArgs e) { throw new NotImplementedException(); } #endregion private TextBox passwordName; private Label label1; private Label label2; private TextBox passwordLength; private CheckBox noSymbols; private Button generate; private Button cancel; } }