namespace Password_Manager { partial class MainForm { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// 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 private TextBox searchBox; private ListBox resultList; private ComboBox profileSelection; } }