2022-08-30 14:15:11 -05:00

97 lines
3.9 KiB
C#

namespace Polymorphism
{
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.exitButton = new System.Windows.Forms.Button();
this.createCatButton = new System.Windows.Forms.Button();
this.createDogButton = new System.Windows.Forms.Button();
this.createAnimalButton = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// exitButton
//
this.exitButton.Location = new System.Drawing.Point(116, 58);
this.exitButton.Name = "exitButton";
this.exitButton.Size = new System.Drawing.Size(75, 37);
this.exitButton.TabIndex = 7;
this.exitButton.Text = "Exit";
this.exitButton.UseVisualStyleBackColor = true;
//
// createCatButton
//
this.createCatButton.Location = new System.Drawing.Point(197, 10);
this.createCatButton.Name = "createCatButton";
this.createCatButton.Size = new System.Drawing.Size(75, 37);
this.createCatButton.TabIndex = 6;
this.createCatButton.Text = "Create a Cat";
this.createCatButton.UseVisualStyleBackColor = true;
//
// createDogButton
//
this.createDogButton.Location = new System.Drawing.Point(116, 10);
this.createDogButton.Name = "createDogButton";
this.createDogButton.Size = new System.Drawing.Size(75, 39);
this.createDogButton.TabIndex = 5;
this.createDogButton.Text = "Create a Dog";
this.createDogButton.UseVisualStyleBackColor = true;
//
// createAnimalButton
//
this.createAnimalButton.Location = new System.Drawing.Point(35, 10);
this.createAnimalButton.Name = "createAnimalButton";
this.createAnimalButton.Size = new System.Drawing.Size(75, 39);
this.createAnimalButton.TabIndex = 4;
this.createAnimalButton.Text = "Create an Animal";
this.createAnimalButton.UseVisualStyleBackColor = true;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(306, 105);
this.Controls.Add(this.exitButton);
this.Controls.Add(this.createCatButton);
this.Controls.Add(this.createDogButton);
this.Controls.Add(this.createAnimalButton);
this.Name = "Form1";
this.Text = "Polymorphism Demo";
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button exitButton;
private System.Windows.Forms.Button createCatButton;
private System.Windows.Forms.Button createDogButton;
private System.Windows.Forms.Button createAnimalButton;
}
}