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
2023-03-24 12:01:08 +01:00

83 lines
2.7 KiB
C#

namespace Password_Manager
{
partial class MainForm
{
/// <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()
{
searchBox = new TextBox();
resultList = new ListBox();
profileSelection = new ComboBox();
SuspendLayout();
//
// textBox1
//
searchBox.Location = new Point(12, 27);
searchBox.Name = "textBox1";
searchBox.PlaceholderText = "Search for a password";
searchBox.Size = new Size(257, 27);
searchBox.TabIndex = 0;
searchBox.TextChanged += UpdateResultList;
//
// listBox1
//
resultList.FormattingEnabled = true;
resultList.ItemHeight = 20;
resultList.Location = new Point(12, 99);
resultList.Name = "listBox1";
resultList.Size = new Size(150, 104);
resultList.TabIndex = 1;
//
// comboBox1
//
profileSelection.FormattingEnabled = true;
profileSelection.Location = new Point(637, 26);
profileSelection.Name = "comboBox1";
profileSelection.Size = new Size(151, 28);
profileSelection.TabIndex = 2;
profileSelection.SelectedIndexChanged += ChangeProfile;
//
// Form1
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(800, 450);
Controls.Add(profileSelection);
Controls.Add(resultList);
Controls.Add(searchBox);
Name = "Form1";
Text = "Form1";
ResumeLayout(false);
PerformLayout();
}
#endregion
public TextBox searchBox;
public ListBox resultList;
public ComboBox profileSelection;
}
}