This repository has been archived on 2025-09-26. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Password-Manager-Legacy/Password Manager/Form1.Designer.cs

110 lines
3.7 KiB
C#
Raw Normal View History

2023-03-24 10:17:54 +01:00
namespace Password_Manager
{
2023-03-24 11:14:49 +01:00
partial class MainForm
2023-03-24 10:17:54 +01:00
{
/// <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()
{
2023-03-24 11:14:49 +01:00
searchBox = new TextBox();
resultList = new ListBox();
profileSelection = new ComboBox();
2023-03-24 12:18:06 +01:00
addProfile = new Button();
button2 = new Button();
SuspendLayout();
//
2023-03-24 12:18:06 +01:00
// searchBox
//
2023-03-24 11:14:49 +01:00
searchBox.Location = new Point(12, 27);
2023-03-24 12:18:06 +01:00
searchBox.Name = "searchBox";
2023-03-24 11:14:49 +01:00
searchBox.PlaceholderText = "Search for a password";
searchBox.Size = new Size(257, 27);
searchBox.TabIndex = 0;
searchBox.TextChanged += UpdateResultList;
//
2023-03-24 12:18:06 +01:00
// resultList
//
2023-03-24 11:14:49 +01:00
resultList.FormattingEnabled = true;
resultList.ItemHeight = 20;
resultList.Location = new Point(12, 99);
2023-03-24 12:18:06 +01:00
resultList.Name = "resultList";
2023-03-24 11:14:49 +01:00
resultList.Size = new Size(150, 104);
resultList.TabIndex = 1;
//
2023-03-24 12:18:06 +01:00
// profileSelection
2023-03-24 11:14:49 +01:00
//
2023-03-24 12:18:06 +01:00
profileSelection.DropDownHeight = 100;
profileSelection.DropDownWidth = 200;
2023-03-24 11:14:49 +01:00
profileSelection.FormattingEnabled = true;
2023-03-24 12:18:06 +01:00
profileSelection.IntegralHeight = false;
profileSelection.Location = new Point(586, 26);
profileSelection.Name = "profileSelection";
profileSelection.Size = new Size(200, 28);
2023-03-24 11:14:49 +01:00
profileSelection.TabIndex = 2;
2023-03-24 12:18:06 +01:00
profileSelection.SelectedIndexChanged += ClearSearchBox;
//
2023-03-24 12:18:06 +01:00
// button1
//
addProfile.Location = new Point(586, 60);
addProfile.Name = "button1";
addProfile.Size = new Size(95, 29);
addProfile.TabIndex = 3;
addProfile.Text = "Add";
addProfile.UseVisualStyleBackColor = true;
//
// button2
//
button2.Location = new Point(691, 60);
button2.Name = "button2";
button2.Size = new Size(95, 29);
button2.TabIndex = 4;
button2.Text = "Delete";
button2.UseVisualStyleBackColor = true;
//
// MainForm
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(800, 450);
2023-03-24 12:18:06 +01:00
Controls.Add(button2);
Controls.Add(addProfile);
2023-03-24 11:14:49 +01:00
Controls.Add(profileSelection);
Controls.Add(resultList);
Controls.Add(searchBox);
2023-03-24 12:18:06 +01:00
Name = "MainForm";
Text = "Form1";
ResumeLayout(false);
PerformLayout();
2023-03-24 10:17:54 +01:00
}
#endregion
2023-03-24 12:01:08 +01:00
public TextBox searchBox;
public ListBox resultList;
public ComboBox profileSelection;
2023-03-24 12:18:06 +01:00
private Button addProfile;
private Button button2;
2023-03-24 10:17:54 +01:00
}
}