118 lines
5.0 KiB
C#
Executable File
118 lines
5.0 KiB
C#
Executable File
namespace lab6_2_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.groupBox1 = new System.Windows.Forms.GroupBox();
|
|
this.playingCardPictureBox = new System.Windows.Forms.PictureBox();
|
|
this.cardListBox = new System.Windows.Forms.ListBox();
|
|
this.showCardButton = new System.Windows.Forms.Button();
|
|
this.exitButton = new System.Windows.Forms.Button();
|
|
this.groupBox1.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.playingCardPictureBox)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// groupBox1
|
|
//
|
|
this.groupBox1.Controls.Add(this.playingCardPictureBox);
|
|
this.groupBox1.Location = new System.Drawing.Point(12, 12);
|
|
this.groupBox1.Name = "groupBox1";
|
|
this.groupBox1.Size = new System.Drawing.Size(184, 196);
|
|
this.groupBox1.TabIndex = 0;
|
|
this.groupBox1.TabStop = false;
|
|
this.groupBox1.Text = "Current Card";
|
|
//
|
|
// playingCardPictureBox
|
|
//
|
|
this.playingCardPictureBox.Image = global::lab6_2_CalebFontenot.Properties.Resources.Ace_Spades;
|
|
this.playingCardPictureBox.Location = new System.Drawing.Point(6, 22);
|
|
this.playingCardPictureBox.Name = "playingCardPictureBox";
|
|
this.playingCardPictureBox.Size = new System.Drawing.Size(172, 168);
|
|
this.playingCardPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
|
|
this.playingCardPictureBox.TabIndex = 0;
|
|
this.playingCardPictureBox.TabStop = false;
|
|
//
|
|
// cardListBox
|
|
//
|
|
this.cardListBox.FormattingEnabled = true;
|
|
this.cardListBox.ItemHeight = 15;
|
|
this.cardListBox.Items.AddRange(new object[] {
|
|
"Ace of Spades",
|
|
"10 of Hearts",
|
|
"King of Clubs"});
|
|
this.cardListBox.Location = new System.Drawing.Point(12, 214);
|
|
this.cardListBox.Name = "cardListBox";
|
|
this.cardListBox.Size = new System.Drawing.Size(178, 64);
|
|
this.cardListBox.TabIndex = 1;
|
|
//
|
|
// showCardButton
|
|
//
|
|
this.showCardButton.Location = new System.Drawing.Point(12, 284);
|
|
this.showCardButton.Name = "showCardButton";
|
|
this.showCardButton.Size = new System.Drawing.Size(89, 23);
|
|
this.showCardButton.TabIndex = 2;
|
|
this.showCardButton.Text = "Show Card";
|
|
this.showCardButton.UseVisualStyleBackColor = true;
|
|
this.showCardButton.Click += new System.EventHandler(this.showCardButton_Click);
|
|
//
|
|
// exitButton
|
|
//
|
|
this.exitButton.Location = new System.Drawing.Point(107, 284);
|
|
this.exitButton.Name = "exitButton";
|
|
this.exitButton.Size = new System.Drawing.Size(89, 23);
|
|
this.exitButton.TabIndex = 3;
|
|
this.exitButton.Text = "Exit";
|
|
this.exitButton.UseVisualStyleBackColor = true;
|
|
this.exitButton.Click += new System.EventHandler(this.exitButton_Click);
|
|
//
|
|
// Form1
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(208, 316);
|
|
this.Controls.Add(this.exitButton);
|
|
this.Controls.Add(this.showCardButton);
|
|
this.Controls.Add(this.cardListBox);
|
|
this.Controls.Add(this.groupBox1);
|
|
this.Name = "Form1";
|
|
this.Text = "Form1";
|
|
this.groupBox1.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)(this.playingCardPictureBox)).EndInit();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private GroupBox groupBox1;
|
|
private PictureBox playingCardPictureBox;
|
|
private ListBox cardListBox;
|
|
private Button showCardButton;
|
|
private Button exitButton;
|
|
}
|
|
} |