Files
ASDV-C-Sharp/Student Sample Programs/Chap09/Phonebook/Phonebook/Form1.Designer.cs
2022-08-30 14:15:11 -05:00

109 lines
4.5 KiB
C#

namespace Phonebook
{
partial class Form1
{
/// <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()
{
this.promptLabel = new System.Windows.Forms.Label();
this.nameListBox = new System.Windows.Forms.ListBox();
this.selectedPhoneDescriptionLabel = new System.Windows.Forms.Label();
this.phoneLabel = new System.Windows.Forms.Label();
this.exitButton = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// promptLabel
//
this.promptLabel.AutoSize = true;
this.promptLabel.Location = new System.Drawing.Point(44, 12);
this.promptLabel.Name = "promptLabel";
this.promptLabel.Size = new System.Drawing.Size(77, 13);
this.promptLabel.TabIndex = 0;
this.promptLabel.Text = "Select a Name";
//
// nameListBox
//
this.nameListBox.FormattingEnabled = true;
this.nameListBox.Location = new System.Drawing.Point(22, 28);
this.nameListBox.Name = "nameListBox";
this.nameListBox.Size = new System.Drawing.Size(120, 95);
this.nameListBox.TabIndex = 1;
//
// selectedPhoneDescriptionLabel
//
this.selectedPhoneDescriptionLabel.AutoSize = true;
this.selectedPhoneDescriptionLabel.Location = new System.Drawing.Point(173, 44);
this.selectedPhoneDescriptionLabel.Name = "selectedPhoneDescriptionLabel";
this.selectedPhoneDescriptionLabel.Size = new System.Drawing.Size(78, 13);
this.selectedPhoneDescriptionLabel.TabIndex = 2;
this.selectedPhoneDescriptionLabel.Text = "Phone Number";
//
// phoneLabel
//
this.phoneLabel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.phoneLabel.Location = new System.Drawing.Point(162, 71);
this.phoneLabel.Name = "phoneLabel";
this.phoneLabel.Size = new System.Drawing.Size(100, 23);
this.phoneLabel.TabIndex = 3;
this.phoneLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// exitButton
//
this.exitButton.Location = new System.Drawing.Point(105, 153);
this.exitButton.Name = "exitButton";
this.exitButton.Size = new System.Drawing.Size(75, 23);
this.exitButton.TabIndex = 4;
this.exitButton.Text = "Exit";
this.exitButton.UseVisualStyleBackColor = true;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(284, 188);
this.Controls.Add(this.exitButton);
this.Controls.Add(this.phoneLabel);
this.Controls.Add(this.selectedPhoneDescriptionLabel);
this.Controls.Add(this.nameListBox);
this.Controls.Add(this.promptLabel);
this.Name = "Form1";
this.Text = "Phonebook";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label promptLabel;
private System.Windows.Forms.ListBox nameListBox;
private System.Windows.Forms.Label selectedPhoneDescriptionLabel;
private System.Windows.Forms.Label phoneLabel;
private System.Windows.Forms.Button exitButton;
}
}