ASDV-C-Sharp/lab5_4/Lab5_8_CalebFontenot/Form1.Designer.cs
2022-10-27 18:18:14 -05:00

119 lines
5.3 KiB
C#
Executable File

namespace Lab5_7_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.headsPictureBox = new System.Windows.Forms.PictureBox();
this.tailsPictureBox = new System.Windows.Forms.PictureBox();
this.tossButton = new System.Windows.Forms.Button();
this.exitButton = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this.headsPictureBox)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.tailsPictureBox)).BeginInit();
this.SuspendLayout();
//
// headsPictureBox
//
this.headsPictureBox.Image = global::Lab5_8_CalebFontenot.Properties.Resources.Heads1;
this.headsPictureBox.Location = new System.Drawing.Point(12, 12);
this.headsPictureBox.Name = "headsPictureBox";
this.headsPictureBox.Size = new System.Drawing.Size(170, 170);
this.headsPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.headsPictureBox.TabIndex = 0;
this.headsPictureBox.TabStop = false;
//
// tailsPictureBox
//
this.tailsPictureBox.Image = global::Lab5_8_CalebFontenot.Properties.Resources.Tails1;
this.tailsPictureBox.Location = new System.Drawing.Point(12, 12);
this.tailsPictureBox.Name = "tailsPictureBox";
this.tailsPictureBox.Size = new System.Drawing.Size(170, 170);
this.tailsPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.tailsPictureBox.TabIndex = 1;
this.tailsPictureBox.TabStop = false;
this.tailsPictureBox.Visible = false;
//
// tossButton
//
this.tossButton.Location = new System.Drawing.Point(12, 212);
this.tossButton.Name = "tossButton";
this.tossButton.Size = new System.Drawing.Size(82, 23);
this.tossButton.TabIndex = 2;
this.tossButton.Text = "Toss";
this.tossButton.UseVisualStyleBackColor = true;
this.tossButton.Click += new System.EventHandler(this.tossButton_Click);
//
// exitButton
//
this.exitButton.Location = new System.Drawing.Point(100, 212);
this.exitButton.Name = "exitButton";
this.exitButton.Size = new System.Drawing.Size(82, 23);
this.exitButton.TabIndex = 3;
this.exitButton.Text = "Exit";
this.exitButton.UseVisualStyleBackColor = true;
this.exitButton.Click += new System.EventHandler(this.exitButton_Click);
//
// label1
//
this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label1.Location = new System.Drawing.Point(12, 186);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(170, 23);
this.label1.TabIndex = 4;
this.label1.Text = "Times run: 0";
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(193, 247);
this.Controls.Add(this.label1);
this.Controls.Add(this.exitButton);
this.Controls.Add(this.tossButton);
this.Controls.Add(this.tailsPictureBox);
this.Controls.Add(this.headsPictureBox);
this.Name = "Form1";
this.Text = "Form1";
((System.ComponentModel.ISupportInitialize)(this.headsPictureBox)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.tailsPictureBox)).EndInit();
this.ResumeLayout(false);
}
#endregion
private PictureBox headsPictureBox;
private PictureBox tailsPictureBox;
private Button tossButton;
private Button exitButton;
private Label label1;
}
}