I'm literally on fire rn

This commit is contained in:
Miskolczi Richárd
2023-03-24 14:03:09 +01:00
parent b06568fb27
commit 99498ed660
10 changed files with 85 additions and 51 deletions

View File

@@ -53,6 +53,7 @@
button2.TabIndex = 1;
button2.Text = "Save";
button2.UseVisualStyleBackColor = true;
button2.Click += Save;
//
// button3
//
@@ -62,19 +63,20 @@
button3.TabIndex = 2;
button3.Text = "Cancel";
button3.UseVisualStyleBackColor = true;
button3.Click += Cancel;
//
// textBox1
// nameTextBox
//
nameTextBox.Location = new Point(12, 12);
nameTextBox.Name = "textBox1";
nameTextBox.Name = "nameTextBox";
nameTextBox.PlaceholderText = "Work";
nameTextBox.Size = new Size(194, 27);
nameTextBox.TabIndex = 3;
//
// textBox2
// pathTextBox
//
pathTextBox.Location = new Point(12, 45);
pathTextBox.Name = "textBox2";
pathTextBox.Name = "pathTextBox";
pathTextBox.PlaceholderText = "C:\\Passwords";
pathTextBox.Size = new Size(194, 27);
pathTextBox.TabIndex = 4;
@@ -90,7 +92,7 @@
Controls.Add(button2);
Controls.Add(button1);
Name = "NewProfileForm";
Text = "NewProfileForm";
Text = "Create profile";
ResumeLayout(false);
PerformLayout();
}