ASDV-C-Sharp/Lab3_CalebFontenot_Evil/Lab3_CalebFontenot/Form1.Designer.cs
2022-08-30 14:15:11 -05:00

100 lines
4.2 KiB
C#
Executable File

namespace Lab3_CalebFontenot
{
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.instructionLabel = new System.Windows.Forms.Label();
this.finlandPictureBox = new System.Windows.Forms.PictureBox();
this.francePictureBox = new System.Windows.Forms.PictureBox();
this.germanyPictureBox = new System.Windows.Forms.PictureBox();
this.countryLabel = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this.finlandPictureBox)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.francePictureBox)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.germanyPictureBox)).BeginInit();
this.SuspendLayout();
//
// instructionLabel
//
this.instructionLabel.AutoSize = true;
this.instructionLabel.Location = new System.Drawing.Point(91, 9);
this.instructionLabel.Name = "instructionLabel";
this.instructionLabel.Size = new System.Drawing.Size(233, 15);
this.instructionLabel.TabIndex = 0;
this.instructionLabel.Text = "Click a flag to see the name of the country.";
//
// finlandPictureBox
//
this.finlandPictureBox.Location = new System.Drawing.Point(0, 0);
this.finlandPictureBox.Name = "finlandPictureBox";
this.finlandPictureBox.Size = new System.Drawing.Size(100, 50);
this.finlandPictureBox.TabIndex = 0;
this.finlandPictureBox.TabStop = false;
//
// francePictureBox
//
this.francePictureBox.Location = new System.Drawing.Point(0, 0);
this.francePictureBox.Name = "francePictureBox";
this.francePictureBox.Size = new System.Drawing.Size(100, 50);
this.francePictureBox.TabIndex = 0;
this.francePictureBox.TabStop = false;
//
// germanyPictureBox
//
this.germanyPictureBox.Location = new System.Drawing.Point(0, 0);
this.germanyPictureBox.Name = "germanyPictureBox";
this.germanyPictureBox.Size = new System.Drawing.Size(100, 50);
this.germanyPictureBox.TabIndex = 0;
this.germanyPictureBox.TabStop = false;
//
// countryLabel
//
this.countryLabel.Location = new System.Drawing.Point(0, 0);
this.countryLabel.Name = "countryLabel";
this.countryLabel.Size = new System.Drawing.Size(100, 23);
this.countryLabel.TabIndex = 0;
//
// Form1
//
this.ClientSize = new System.Drawing.Size(284, 261);
this.Name = "Form1";
((System.ComponentModel.ISupportInitialize)(this.finlandPictureBox)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.francePictureBox)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.germanyPictureBox)).EndInit();
this.ResumeLayout(false);
}
#endregion
private Label instructionLabel;
private PictureBox finlandPictureBox;
private PictureBox francePictureBox;
private PictureBox germanyPictureBox;
private Label countryLabel;
}
}