New dialog for adding profiles
This commit is contained in:
106
Password Manager/NewProfileForm.Designer.cs
generated
Normal file
106
Password Manager/NewProfileForm.Designer.cs
generated
Normal file
@@ -0,0 +1,106 @@
|
||||
namespace Password_Manager
|
||||
{
|
||||
partial class NewProfileForm
|
||||
{
|
||||
/// <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()
|
||||
{
|
||||
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;
|
||||
//
|
||||
// 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;
|
||||
//
|
||||
// textBox1
|
||||
//
|
||||
nameTextBox.Location = new Point(12, 12);
|
||||
nameTextBox.Name = "textBox1";
|
||||
nameTextBox.PlaceholderText = "Work";
|
||||
nameTextBox.Size = new Size(194, 27);
|
||||
nameTextBox.TabIndex = 3;
|
||||
//
|
||||
// textBox2
|
||||
//
|
||||
pathTextBox.Location = new Point(12, 45);
|
||||
pathTextBox.Name = "textBox2";
|
||||
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 = "NewProfileForm";
|
||||
ResumeLayout(false);
|
||||
PerformLayout();
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private Button button1;
|
||||
private Button button2;
|
||||
private Button button3;
|
||||
private TextBox nameTextBox;
|
||||
private TextBox pathTextBox;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user