Subversion Repositories BlockadePP

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 freddie 1
namespace blockade
2
{
3
    partial class Form1
4
    {
5
        /// <summary>
6
        /// Required designer variable.
7
        /// </summary>
8
        private System.ComponentModel.IContainer components = null;
9
 
10
        /// <summary>
11
        /// Clean up any resources being used.
12
        /// </summary>
13
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14
        protected override void Dispose(bool disposing)
15
        {
16
            if (disposing && (components != null))
17
            {
18
                components.Dispose();
19
            }
20
            base.Dispose(disposing);
21
        }
22
 
23
        #region Windows Form Designer generated code
24
 
25
        /// <summary>
26
        /// Required method for Designer support - do not modify
27
        /// the contents of this method with the code editor.
28
        /// </summary>
29
        private void InitializeComponent()
30
        {
31
                this.components = new System.ComponentModel.Container();
32
                this.view = new System.Windows.Forms.PictureBox();
33
                this.cashF = new System.Windows.Forms.Label();
34
                this.goF = new System.Windows.Forms.PictureBox();
35
                this.livesF = new System.Windows.Forms.Label();
36
                this.beamF = new System.Windows.Forms.PictureBox();
37
                this.levelF = new System.Windows.Forms.Label();
38
                this.timer1 = new System.Windows.Forms.Timer(this.components);
39
                ((System.ComponentModel.ISupportInitialize)(this.view)).BeginInit();
40
                ((System.ComponentModel.ISupportInitialize)(this.goF)).BeginInit();
41
                ((System.ComponentModel.ISupportInitialize)(this.beamF)).BeginInit();
42
                this.SuspendLayout();
43
                // 
44
                // view
45
                // 
46
                this.view.Dock = System.Windows.Forms.DockStyle.Top;
47
                this.view.Location = new System.Drawing.Point(0, 0);
48
                this.view.Name = "view";
49
                this.view.Size = new System.Drawing.Size(500, 400);
50
                this.view.TabIndex = 0;
51
                this.view.TabStop = false;
52
                this.view.MouseClick += new System.Windows.Forms.MouseEventHandler(this.view_MouseClick);
53
                // 
54
                // cashF
55
                // 
56
                this.cashF.AutoSize = true;
57
                this.cashF.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
58
                this.cashF.Location = new System.Drawing.Point(12, 413);
59
                this.cashF.Name = "cashF";
60
                this.cashF.Size = new System.Drawing.Size(104, 25);
61
                this.cashF.TabIndex = 1;
62
                this.cashF.Text = "Cash: 200";
63
                // 
64
                // goF
65
                // 
66
                this.goF.BackColor = System.Drawing.Color.White;
67
                this.goF.Location = new System.Drawing.Point(408, 412);
68
                this.goF.Name = "goF";
69
                this.goF.Size = new System.Drawing.Size(80, 80);
70
                this.goF.TabIndex = 2;
71
                this.goF.TabStop = false;
72
                this.goF.Click += new System.EventHandler(this.pictureBox1_Click);
73
                // 
74
                // livesF
75
                // 
76
                this.livesF.AutoSize = true;
77
                this.livesF.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
78
                this.livesF.Location = new System.Drawing.Point(12, 438);
79
                this.livesF.Name = "livesF";
80
                this.livesF.Size = new System.Drawing.Size(97, 25);
81
                this.livesF.TabIndex = 3;
82
                this.livesF.Text = "100 Lives";
83
                // 
84
                // beamF
85
                // 
86
                this.beamF.Dock = System.Windows.Forms.DockStyle.Bottom;
87
                this.beamF.Location = new System.Drawing.Point(0, 400);
88
                this.beamF.Name = "beamF";
89
                this.beamF.Size = new System.Drawing.Size(500, 100);
90
                this.beamF.TabIndex = 4;
91
                this.beamF.TabStop = false;
92
                // 
93
                // levelF
94
                // 
95
                this.levelF.AutoSize = true;
96
                this.levelF.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
97
                this.levelF.Location = new System.Drawing.Point(12, 463);
98
                this.levelF.Name = "levelF";
99
                this.levelF.Size = new System.Drawing.Size(84, 25);
100
                this.levelF.TabIndex = 8;
101
                this.levelF.Text = "Level: 0";
102
                // 
103
                // timer1
104
                // 
105
                this.timer1.Interval = 1000;
106
                this.timer1.Tick += new System.EventHandler(this.Timer1Tick);
107
                // 
108
                // Form1
109
                // 
110
                this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
111
                this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
112
                this.ClientSize = new System.Drawing.Size(500, 500);
113
                this.Controls.Add(this.levelF);
114
                this.Controls.Add(this.livesF);
115
                this.Controls.Add(this.goF);
116
                this.Controls.Add(this.cashF);
117
                this.Controls.Add(this.view);
118
                this.Controls.Add(this.beamF);
119
                this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
120
                this.Name = "Form1";
121
                this.Text = "Form1";
122
                this.Load += new System.EventHandler(this.Form1_Load);
123
                this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1FormClosing);
124
                this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Form1KeyDown);
125
                ((System.ComponentModel.ISupportInitialize)(this.view)).EndInit();
126
                ((System.ComponentModel.ISupportInitialize)(this.goF)).EndInit();
127
                ((System.ComponentModel.ISupportInitialize)(this.beamF)).EndInit();
128
                this.ResumeLayout(false);
129
                this.PerformLayout();
130
        }
131
        private System.Windows.Forms.Timer timer1;
132
 
133
        #endregion
134
 
135
        private System.Windows.Forms.PictureBox view;
136
        private System.Windows.Forms.Label cashF;
137
        private System.Windows.Forms.PictureBox goF;
138
        private System.Windows.Forms.Label livesF;
139
        private System.Windows.Forms.PictureBox beamF;
140
        private System.Windows.Forms.Label levelF;
141
    }
142
}
143