Subversion Repositories BlockadePP

Rev

Rev 1 | Details | Compare with Previous | 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.Location = new System.Drawing.Point(408, 412);
67
                this.goF.Name = "goF";
68
                this.goF.Size = new System.Drawing.Size(80, 80);
69
                this.goF.TabIndex = 2;
70
                this.goF.TabStop = false;
71
                this.goF.Click += new System.EventHandler(this.pictureBox1_Click);
72
                // 
73
                // livesF
74
                // 
75
                this.livesF.AutoSize = true;
76
                this.livesF.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
77
                this.livesF.Location = new System.Drawing.Point(12, 438);
78
                this.livesF.Name = "livesF";
79
                this.livesF.Size = new System.Drawing.Size(97, 25);
80
                this.livesF.TabIndex = 3;
81
                this.livesF.Text = "100 Lives";
82
                // 
83
                // beamF
84
                // 
85
                this.beamF.Dock = System.Windows.Forms.DockStyle.Bottom;
86
                this.beamF.Location = new System.Drawing.Point(0, 400);
87
                this.beamF.Name = "beamF";
88
                this.beamF.Size = new System.Drawing.Size(500, 100);
89
                this.beamF.TabIndex = 4;
90
                this.beamF.TabStop = false;
91
                // 
92
                // levelF
93
                // 
94
                this.levelF.AutoSize = true;
95
                this.levelF.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
96
                this.levelF.Location = new System.Drawing.Point(12, 463);
97
                this.levelF.Name = "levelF";
98
                this.levelF.Size = new System.Drawing.Size(84, 25);
99
                this.levelF.TabIndex = 8;
100
                this.levelF.Text = "Level: 0";
101
                // 
102
                // timer1
103
                // 
104
                this.timer1.Interval = 1000;
105
                this.timer1.Tick += new System.EventHandler(this.Timer1Tick);
106
                // 
107
                // Form1
108
                // 
109
                this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
110
                this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
111
                this.ClientSize = new System.Drawing.Size(500, 500);
112
                this.Controls.Add(this.levelF);
113
                this.Controls.Add(this.livesF);
114
                this.Controls.Add(this.goF);
115
                this.Controls.Add(this.cashF);
116
                this.Controls.Add(this.view);
117
                this.Controls.Add(this.beamF);
118
                this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
119
                this.Name = "Form1";
120
                this.Text = "Form1";
121
                this.Load += new System.EventHandler(this.Form1_Load);
122
                this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1FormClosing);
123
                this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Form1KeyDown);
124
                ((System.ComponentModel.ISupportInitialize)(this.view)).EndInit();
125
                ((System.ComponentModel.ISupportInitialize)(this.goF)).EndInit();
126
                ((System.ComponentModel.ISupportInitialize)(this.beamF)).EndInit();
127
                this.ResumeLayout(false);
128
                this.PerformLayout();
129
        }
130
        private System.Windows.Forms.Timer timer1;
131
 
132
        #endregion
133
 
134
        private System.Windows.Forms.PictureBox view;
135
        private System.Windows.Forms.Label cashF;
136
        private System.Windows.Forms.PictureBox goF;
137
        private System.Windows.Forms.Label livesF;
138
        private System.Windows.Forms.PictureBox beamF;
139
        private System.Windows.Forms.Label levelF;
140
    }
141
}
142