namespace Password_Manager { partial class NewProfileForm { /// /// 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() { button1 = new Button(); button2 = new Button(); button3 = new Button(); nameTextBox = new TextBox(); pathTextBox = new TextBox(); SuspendLayout(); // // button1 // button1.Location = new Point(212, 45); button1.Name = "button1"; button1.Size = new Size(94, 29); button1.TabIndex = 0; button1.Text = "Browse"; button1.UseVisualStyleBackColor = true; button1.Click += ChooseFolder; // // button2 // button2.Location = new Point(161, 78); button2.Name = "button2"; button2.Size = new Size(145, 29); button2.TabIndex = 1; button2.Text = "Save"; button2.UseVisualStyleBackColor = true; button2.Click += Save; // // button3 // button3.Location = new Point(12, 78); button3.Name = "button3"; button3.Size = new Size(145, 29); button3.TabIndex = 2; button3.Text = "Cancel"; button3.UseVisualStyleBackColor = true; button3.Click += Cancel; // // nameTextBox // nameTextBox.Location = new Point(12, 12); nameTextBox.Name = "nameTextBox"; nameTextBox.PlaceholderText = "Work"; nameTextBox.Size = new Size(194, 27); nameTextBox.TabIndex = 3; // // pathTextBox // pathTextBox.Location = new Point(12, 45); pathTextBox.Name = "pathTextBox"; pathTextBox.PlaceholderText = "C:\\Passwords"; pathTextBox.Size = new Size(194, 27); pathTextBox.TabIndex = 4; // // NewProfileForm // AutoScaleDimensions = new SizeF(8F, 20F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(317, 127); Controls.Add(pathTextBox); Controls.Add(nameTextBox); Controls.Add(button3); Controls.Add(button2); Controls.Add(button1); Name = "NewProfileForm"; Text = "Create profile"; ResumeLayout(false); PerformLayout(); } #endregion private Button button1; private Button button2; private Button button3; private TextBox nameTextBox; private TextBox pathTextBox; } }