-
Notifications
You must be signed in to change notification settings - Fork 0
/
MainForm.Designer.cs
116 lines (110 loc) · 4.85 KB
/
MainForm.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
namespace BallCollision
{
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();
this.Generator = new System.Windows.Forms.Timer(this.components);
this.BallShrink = new System.Windows.Forms.Timer(this.components);
this.status = new System.Windows.Forms.Timer(this.components);
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
this.lblPoints = new System.Windows.Forms.ToolStripStatusLabel();
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.colorDialog1 = new System.Windows.Forms.ColorDialog();
this.statusStrip1.SuspendLayout();
this.SuspendLayout();
//
// Generator
//
this.Generator.Tick += new System.EventHandler(this.Generator_Tick);
//
// BallShrink
//
this.BallShrink.Tick += new System.EventHandler(this.BallShrink_Tick);
//
// status
//
this.status.Tick += new System.EventHandler(this.checkStatus);
//
// statusStrip1
//
this.statusStrip1.BackColor = System.Drawing.Color.MediumPurple;
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripStatusLabel1,
this.lblPoints});
this.statusStrip1.Location = new System.Drawing.Point(0, 544);
this.statusStrip1.Name = "statusStrip1";
this.statusStrip1.Size = new System.Drawing.Size(1043, 22);
this.statusStrip1.TabIndex = 0;
this.statusStrip1.Text = "statusStrip1";
//
// toolStripStatusLabel1
//
this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
this.toolStripStatusLabel1.Size = new System.Drawing.Size(46, 17);
this.toolStripStatusLabel1.Text = "Points: ";
//
// lblPoints
//
this.lblPoints.Name = "lblPoints";
this.lblPoints.Size = new System.Drawing.Size(13, 17);
this.lblPoints.Text = "0";
//
// contextMenuStrip1
//
this.contextMenuStrip1.Name = "contextMenuStrip1";
this.contextMenuStrip1.Size = new System.Drawing.Size(61, 4);
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.DarkSlateGray;
this.ClientSize = new System.Drawing.Size(1043, 566);
this.Controls.Add(this.statusStrip1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Name = "MainForm";
this.Text = "Ball Collision";
this.Paint += new System.Windows.Forms.PaintEventHandler(this.MainForm_Paint);
this.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.MainForm_KeyPress);
this.MouseClick += new System.Windows.Forms.MouseEventHandler(this.MainForm_MouseClick);
this.statusStrip1.ResumeLayout(false);
this.statusStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Timer Generator;
private System.Windows.Forms.Timer BallShrink;
private System.Windows.Forms.Timer status;
private System.Windows.Forms.StatusStrip statusStrip1;
private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel1;
private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
private System.Windows.Forms.ToolStripStatusLabel lblPoints;
private System.Windows.Forms.ColorDialog colorDialog1;
}
}