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

112 lines
3.8 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();
2023-03-24 12:39:50 +01:00
resultList = new ResultListBox();
2023-03-24 11:14:49 +01:00
profileSelection = new ComboBox();
2023-03-24 12:18:06 +01:00
addProfile = new Button();
2023-03-24 12:39:50 +01:00
removeProfile = 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:39:50 +01:00
// addProfile
2023-03-24 12:18:06 +01:00
//
addProfile.Location = new Point(586, 60);
2023-03-24 12:39:50 +01:00
addProfile.Name = "addProfile";
2023-03-24 12:18:06 +01:00
addProfile.Size = new Size(95, 29);
addProfile.TabIndex = 3;
addProfile.Text = "Add";
addProfile.UseVisualStyleBackColor = true;
2023-03-24 12:39:50 +01:00
addProfile.Click += AddProfile;
2023-03-24 12:18:06 +01:00
//
// button2
//
2023-03-24 12:39:50 +01:00
removeProfile.Location = new Point(691, 60);
removeProfile.Name = "button2";
removeProfile.Size = new Size(95, 29);
removeProfile.TabIndex = 4;
removeProfile.Text = "Delete";
removeProfile.UseVisualStyleBackColor = true;
2023-03-24 12:18:06 +01:00
//
// MainForm
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(800, 450);
2023-03-24 12:39:50 +01:00
Controls.Add(removeProfile);
2023-03-24 12:18:06 +01:00
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;
2023-03-24 12:39:50 +01:00
public ResultListBox resultList;
2023-03-24 12:01:08 +01:00
public ComboBox profileSelection;
2023-03-24 12:18:06 +01:00
private Button addProfile;
2023-03-24 12:39:50 +01:00
private Button removeProfile;
2023-03-24 10:17:54 +01:00
}
}