-
Notifications
You must be signed in to change notification settings - Fork 5
/
Form1.Designer.cs
113 lines (106 loc) · 5.51 KB
/
Form1.Designer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
namespace Spin_The_Wheel
{
partial class Main
{
/// <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.Title_Label = new System.Windows.Forms.Label();
this.Spin_Button = new System.Windows.Forms.Button();
this.Wheel_PictureBox = new System.Windows.Forms.PictureBox();
this.Credits_label = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this.Wheel_PictureBox)).BeginInit();
this.SuspendLayout();
//
// Title_Label
//
this.Title_Label.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.Title_Label.AutoSize = true;
this.Title_Label.Font = new System.Drawing.Font("Palatino Linotype", 36F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.Title_Label.Location = new System.Drawing.Point(46, 9);
this.Title_Label.Name = "Title_Label";
this.Title_Label.Size = new System.Drawing.Size(494, 65);
this.Title_Label.TabIndex = 0;
this.Title_Label.Text = "Spin the prize wheel!";
//
// Spin_Button
//
this.Spin_Button.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.Spin_Button.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.Spin_Button.Location = new System.Drawing.Point(181, 574);
this.Spin_Button.Name = "Spin_Button";
this.Spin_Button.Size = new System.Drawing.Size(226, 47);
this.Spin_Button.TabIndex = 1;
this.Spin_Button.Text = "Spin the wheel";
this.Spin_Button.UseVisualStyleBackColor = true;
this.Spin_Button.Click += new System.EventHandler(this.Spin_Button_Click);
//
// Wheel_PictureBox
//
this.Wheel_PictureBox.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.Wheel_PictureBox.BackgroundImage = global::Spin_The_Wheel.Properties.Resources.No_Slots_active;
this.Wheel_PictureBox.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.Wheel_PictureBox.Location = new System.Drawing.Point(49, 91);
this.Wheel_PictureBox.Name = "Wheel_PictureBox";
this.Wheel_PictureBox.Size = new System.Drawing.Size(491, 477);
this.Wheel_PictureBox.TabIndex = 2;
this.Wheel_PictureBox.TabStop = false;
//
// Credits_label
//
this.Credits_label.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.Credits_label.AutoSize = true;
this.Credits_label.Location = new System.Drawing.Point(448, 620);
this.Credits_label.Name = "Credits_label";
this.Credits_label.Size = new System.Drawing.Size(139, 13);
this.Credits_label.TabIndex = 3;
this.Credits_label.Text = "Originally made by gurrenm3";
//
// Main
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(587, 633);
this.Controls.Add(this.Credits_label);
this.Controls.Add(this.Wheel_PictureBox);
this.Controls.Add(this.Spin_Button);
this.Controls.Add(this.Title_Label);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
this.MaximizeBox = false;
this.Name = "Main";
this.Text = "Spin The Wheel!";
((System.ComponentModel.ISupportInitialize)(this.Wheel_PictureBox)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label Title_Label;
private System.Windows.Forms.Button Spin_Button;
public System.Windows.Forms.PictureBox Wheel_PictureBox;
private System.Windows.Forms.Label Credits_label;
}
}