Initial commit
This commit is contained in:
+219
@@ -0,0 +1,219 @@
|
||||
namespace SlotMachineSimulator
|
||||
{
|
||||
partial class mainForm
|
||||
{
|
||||
/// <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.components = new System.ComponentModel.Container();
|
||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(mainForm));
|
||||
this.slotPicture1 = new System.Windows.Forms.PictureBox();
|
||||
this.slotPicture2 = new System.Windows.Forms.PictureBox();
|
||||
this.slotPicture3 = new System.Windows.Forms.PictureBox();
|
||||
this.spinButton = new System.Windows.Forms.Button();
|
||||
this.exitButton = new System.Windows.Forms.Button();
|
||||
this.amountInsertedTextBox = new System.Windows.Forms.TextBox();
|
||||
this.label1 = new System.Windows.Forms.Label();
|
||||
this.fruitImageList = new System.Windows.Forms.ImageList(this.components);
|
||||
this.mainMenu = new System.Windows.Forms.MenuStrip();
|
||||
this.fileMainMenu = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.exitFileMainMenu = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.editMainMenu = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.resetEditMainMenu = new System.Windows.Forms.ToolStripMenuItem();
|
||||
((System.ComponentModel.ISupportInitialize)(this.slotPicture1)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.slotPicture2)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.slotPicture3)).BeginInit();
|
||||
this.mainMenu.SuspendLayout();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// slotPicture1
|
||||
//
|
||||
this.slotPicture1.Image = global::SlotMachineSimulator.Properties.Resources.Watermelon;
|
||||
this.slotPicture1.Location = new System.Drawing.Point(22, 52);
|
||||
this.slotPicture1.Name = "slotPicture1";
|
||||
this.slotPicture1.Size = new System.Drawing.Size(111, 110);
|
||||
this.slotPicture1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
|
||||
this.slotPicture1.TabIndex = 0;
|
||||
this.slotPicture1.TabStop = false;
|
||||
//
|
||||
// slotPicture2
|
||||
//
|
||||
this.slotPicture2.Image = global::SlotMachineSimulator.Properties.Resources.Apple;
|
||||
this.slotPicture2.Location = new System.Drawing.Point(152, 52);
|
||||
this.slotPicture2.Name = "slotPicture2";
|
||||
this.slotPicture2.Size = new System.Drawing.Size(111, 110);
|
||||
this.slotPicture2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
|
||||
this.slotPicture2.TabIndex = 1;
|
||||
this.slotPicture2.TabStop = false;
|
||||
//
|
||||
// slotPicture3
|
||||
//
|
||||
this.slotPicture3.Image = global::SlotMachineSimulator.Properties.Resources.Grapes;
|
||||
this.slotPicture3.Location = new System.Drawing.Point(283, 52);
|
||||
this.slotPicture3.Name = "slotPicture3";
|
||||
this.slotPicture3.Size = new System.Drawing.Size(111, 110);
|
||||
this.slotPicture3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
|
||||
this.slotPicture3.TabIndex = 2;
|
||||
this.slotPicture3.TabStop = false;
|
||||
//
|
||||
// spinButton
|
||||
//
|
||||
this.spinButton.Location = new System.Drawing.Point(104, 217);
|
||||
this.spinButton.Name = "spinButton";
|
||||
this.spinButton.Size = new System.Drawing.Size(75, 23);
|
||||
this.spinButton.TabIndex = 3;
|
||||
this.spinButton.Text = "Spin";
|
||||
this.spinButton.UseVisualStyleBackColor = true;
|
||||
this.spinButton.Click += new System.EventHandler(this.spinButton_Click);
|
||||
//
|
||||
// exitButton
|
||||
//
|
||||
this.exitButton.Location = new System.Drawing.Point(217, 217);
|
||||
this.exitButton.Name = "exitButton";
|
||||
this.exitButton.Size = new System.Drawing.Size(75, 23);
|
||||
this.exitButton.TabIndex = 4;
|
||||
this.exitButton.Text = "Exit";
|
||||
this.exitButton.UseVisualStyleBackColor = true;
|
||||
this.exitButton.Click += new System.EventHandler(this.exitButton_Click);
|
||||
//
|
||||
// amountInsertedTextBox
|
||||
//
|
||||
this.amountInsertedTextBox.Location = new System.Drawing.Point(200, 191);
|
||||
this.amountInsertedTextBox.Name = "amountInsertedTextBox";
|
||||
this.amountInsertedTextBox.Size = new System.Drawing.Size(107, 20);
|
||||
this.amountInsertedTextBox.TabIndex = 5;
|
||||
//
|
||||
// label1
|
||||
//
|
||||
this.label1.AutoSize = true;
|
||||
this.label1.Location = new System.Drawing.Point(98, 194);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Size = new System.Drawing.Size(96, 13);
|
||||
this.label1.TabIndex = 6;
|
||||
this.label1.Text = "Amount Inserted: $";
|
||||
//
|
||||
// fruitImageList
|
||||
//
|
||||
this.fruitImageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("fruitImageList.ImageStream")));
|
||||
this.fruitImageList.TransparentColor = System.Drawing.Color.Transparent;
|
||||
this.fruitImageList.Images.SetKeyName(0, "Apple.bmp");
|
||||
this.fruitImageList.Images.SetKeyName(1, "Banana.bmp");
|
||||
this.fruitImageList.Images.SetKeyName(2, "Cherries.bmp");
|
||||
this.fruitImageList.Images.SetKeyName(3, "Grapes.bmp");
|
||||
this.fruitImageList.Images.SetKeyName(4, "Lemon.bmp");
|
||||
this.fruitImageList.Images.SetKeyName(5, "Lime.bmp");
|
||||
this.fruitImageList.Images.SetKeyName(6, "Orange.bmp");
|
||||
this.fruitImageList.Images.SetKeyName(7, "Pear.bmp");
|
||||
this.fruitImageList.Images.SetKeyName(8, "Strawberry.bmp");
|
||||
this.fruitImageList.Images.SetKeyName(9, "Watermelon.bmp");
|
||||
//
|
||||
// mainMenu
|
||||
//
|
||||
this.mainMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||
this.fileMainMenu,
|
||||
this.editMainMenu});
|
||||
this.mainMenu.Location = new System.Drawing.Point(0, 0);
|
||||
this.mainMenu.Name = "mainMenu";
|
||||
this.mainMenu.Size = new System.Drawing.Size(417, 24);
|
||||
this.mainMenu.TabIndex = 7;
|
||||
this.mainMenu.Text = "menuStrip1";
|
||||
//
|
||||
// fileMainMenu
|
||||
//
|
||||
this.fileMainMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||
this.exitFileMainMenu});
|
||||
this.fileMainMenu.Name = "fileMainMenu";
|
||||
this.fileMainMenu.Size = new System.Drawing.Size(37, 20);
|
||||
this.fileMainMenu.Text = "&File";
|
||||
//
|
||||
// exitFileMainMenu
|
||||
//
|
||||
this.exitFileMainMenu.Name = "exitFileMainMenu";
|
||||
this.exitFileMainMenu.Size = new System.Drawing.Size(92, 22);
|
||||
this.exitFileMainMenu.Text = "E&xit";
|
||||
this.exitFileMainMenu.Click += new System.EventHandler(this.exitFileMainMenu_Click);
|
||||
//
|
||||
// editMainMenu
|
||||
//
|
||||
this.editMainMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||
this.resetEditMainMenu});
|
||||
this.editMainMenu.Name = "editMainMenu";
|
||||
this.editMainMenu.Size = new System.Drawing.Size(39, 20);
|
||||
this.editMainMenu.Text = "&Edit";
|
||||
//
|
||||
// resetEditMainMenu
|
||||
//
|
||||
this.resetEditMainMenu.Name = "resetEditMainMenu";
|
||||
this.resetEditMainMenu.Size = new System.Drawing.Size(102, 22);
|
||||
this.resetEditMainMenu.Text = "&Reset";
|
||||
this.resetEditMainMenu.Click += new System.EventHandler(this.resetEditMainMenu_Click);
|
||||
//
|
||||
// mainForm
|
||||
//
|
||||
this.AcceptButton = this.spinButton;
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.ClientSize = new System.Drawing.Size(417, 259);
|
||||
this.Controls.Add(this.label1);
|
||||
this.Controls.Add(this.amountInsertedTextBox);
|
||||
this.Controls.Add(this.exitButton);
|
||||
this.Controls.Add(this.spinButton);
|
||||
this.Controls.Add(this.slotPicture3);
|
||||
this.Controls.Add(this.slotPicture2);
|
||||
this.Controls.Add(this.slotPicture1);
|
||||
this.Controls.Add(this.mainMenu);
|
||||
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
||||
this.MainMenuStrip = this.mainMenu;
|
||||
this.Name = "mainForm";
|
||||
this.Text = "Slot Machine Simulator";
|
||||
((System.ComponentModel.ISupportInitialize)(this.slotPicture1)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.slotPicture2)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.slotPicture3)).EndInit();
|
||||
this.mainMenu.ResumeLayout(false);
|
||||
this.mainMenu.PerformLayout();
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private System.Windows.Forms.PictureBox slotPicture1;
|
||||
private System.Windows.Forms.PictureBox slotPicture2;
|
||||
private System.Windows.Forms.PictureBox slotPicture3;
|
||||
private System.Windows.Forms.Button spinButton;
|
||||
private System.Windows.Forms.Button exitButton;
|
||||
private System.Windows.Forms.TextBox amountInsertedTextBox;
|
||||
private System.Windows.Forms.Label label1;
|
||||
private System.Windows.Forms.ImageList fruitImageList;
|
||||
private System.Windows.Forms.MenuStrip mainMenu;
|
||||
private System.Windows.Forms.ToolStripMenuItem fileMainMenu;
|
||||
private System.Windows.Forms.ToolStripMenuItem exitFileMainMenu;
|
||||
private System.Windows.Forms.ToolStripMenuItem editMainMenu;
|
||||
private System.Windows.Forms.ToolStripMenuItem resetEditMainMenu;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user