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

86 lines
3.4 KiB
C#

namespace Load_Event
{
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.outputDescriptionLabel = new System.Windows.Forms.Label();
this.countriesListBox = new System.Windows.Forms.ListBox();
this.exitButton = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// outputDescriptionLabel
//
this.outputDescriptionLabel.AutoSize = true;
this.outputDescriptionLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.outputDescriptionLabel.Location = new System.Drawing.Point(15, 13);
this.outputDescriptionLabel.Name = "outputDescriptionLabel";
this.outputDescriptionLabel.Size = new System.Drawing.Size(225, 16);
this.outputDescriptionLabel.TabIndex = 5;
this.outputDescriptionLabel.Text = "The Countries of South America";
//
// countriesListBox
//
this.countriesListBox.FormattingEnabled = true;
this.countriesListBox.Location = new System.Drawing.Point(43, 40);
this.countriesListBox.Name = "countriesListBox";
this.countriesListBox.Size = new System.Drawing.Size(171, 95);
this.countriesListBox.TabIndex = 4;
//
// exitButton
//
this.exitButton.Location = new System.Drawing.Point(90, 151);
this.exitButton.Name = "exitButton";
this.exitButton.Size = new System.Drawing.Size(75, 23);
this.exitButton.TabIndex = 6;
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(255, 189);
this.Controls.Add(this.exitButton);
this.Controls.Add(this.outputDescriptionLabel);
this.Controls.Add(this.countriesListBox);
this.Name = "Form1";
this.Text = "South America";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label outputDescriptionLabel;
private System.Windows.Forms.ListBox countriesListBox;
private System.Windows.Forms.Button exitButton;
}
}