This repository has been archived by the owner on Nov 27, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFrmMenu.Designer.cs
127 lines (120 loc) · 6 KB
/
FrmMenu.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
namespace Frogger
{
partial class FrmMenu
{
/// <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(FrmMenu));
this.pbKikker = new System.Windows.Forms.PictureBox();
this.pbLogo = new System.Windows.Forms.PictureBox();
this.cbxTier = new System.Windows.Forms.ComboBox();
this.timerbackground = new System.Windows.Forms.Timer(this.components);
((System.ComponentModel.ISupportInitialize)(this.pbKikker)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pbLogo)).BeginInit();
this.SuspendLayout();
//
// pbKikker
//
this.pbKikker.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.pbKikker.BackColor = System.Drawing.Color.Transparent;
this.pbKikker.Image = global::Frogger.Properties.Resources.kikker_west;
this.pbKikker.Location = new System.Drawing.Point(646, 40);
this.pbKikker.Name = "pbKikker";
this.pbKikker.Size = new System.Drawing.Size(146, 166);
this.pbKikker.TabIndex = 1;
this.pbKikker.TabStop = false;
//
// pbLogo
//
this.pbLogo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.pbLogo.BackColor = System.Drawing.Color.Transparent;
this.pbLogo.Image = global::Frogger.Properties.Resources.logo_frogger_reloaded;
this.pbLogo.Location = new System.Drawing.Point(0, 0);
this.pbLogo.Name = "pbLogo";
this.pbLogo.Size = new System.Drawing.Size(792, 206);
this.pbLogo.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.pbLogo.TabIndex = 0;
this.pbLogo.TabStop = false;
//
// cbxTier
//
this.cbxTier.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.cbxTier.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(205)))), ((int)(((byte)(50)))));
this.cbxTier.CausesValidation = false;
this.cbxTier.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cbxTier.Font = new System.Drawing.Font("Flubber", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.cbxTier.FormattingEnabled = true;
this.cbxTier.Items.AddRange(new object[] {
"Freeplay",
"Easy",
"Medium",
"Hard",
"Elite"});
this.cbxTier.Location = new System.Drawing.Point(589, 525);
this.cbxTier.Name = "cbxTier";
this.cbxTier.Size = new System.Drawing.Size(167, 36);
this.cbxTier.TabIndex = 2;
this.cbxTier.TabStop = false;
this.cbxTier.Visible = false;
this.cbxTier.VisibleChanged += new System.EventHandler(this.cbxTier_VisibleChanged);
//
// timerbackground
//
this.timerbackground.Enabled = true;
this.timerbackground.Interval = 20;
this.timerbackground.Tick += new System.EventHandler(this.timerbackground_Tick);
//
// FrmMenu
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoValidate = System.Windows.Forms.AutoValidate.Disable;
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(125)))), ((int)(((byte)(0)))));
this.CausesValidation = false;
this.ClientSize = new System.Drawing.Size(792, 573);
this.Controls.Add(this.cbxTier);
this.Controls.Add(this.pbKikker);
this.Controls.Add(this.pbLogo);
this.DoubleBuffered = true;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.KeyPreview = true;
this.Name = "FrmMenu";
this.Text = "Frogger Reloaded";
this.Paint += new System.Windows.Forms.PaintEventHandler(this.FrmMenu_Paint);
this.Resize += new System.EventHandler(this.FrmMenu_Resize);
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.FrmMenu_KeyDown);
this.ResizeEnd += new System.EventHandler(this.FrmMenu_ResizeEnd);
((System.ComponentModel.ISupportInitialize)(this.pbKikker)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.pbLogo)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.PictureBox pbLogo;
private System.Windows.Forms.PictureBox pbKikker;
public System.Windows.Forms.ComboBox cbxTier;
public System.Windows.Forms.Timer timerbackground;
}
}