Advertisement
Guest User

Untitled

a guest
Apr 7th, 2013
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.65 KB | None | 0 0
  1. namespace BounceBall
  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.timer1 = new System.Windows.Forms.Timer(this.components);
  33. this.timer2 = new System.Windows.Forms.Timer(this.components);
  34. this.timer3 = new System.Windows.Forms.Timer(this.components);
  35. this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
  36. this.menuStrip1 = new System.Windows.Forms.MenuStrip();
  37. this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  38. this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  39. this.pauseToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  40. this.label1 = new System.Windows.Forms.Label();
  41. this.label2 = new System.Windows.Forms.Label();
  42. this.brickToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  43. this.menuStrip1.SuspendLayout();
  44. this.SuspendLayout();
  45. //
  46. // timer1
  47. //
  48. this.timer1.Enabled = true;
  49. this.timer1.Interval = 1;
  50. this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
  51. //
  52. // timer2
  53. //
  54. this.timer2.Enabled = true;
  55. this.timer2.Tick += new System.EventHandler(this.timer2_Tick);
  56. //
  57. // timer3
  58. //
  59. this.timer3.Enabled = true;
  60. this.timer3.Tick += new System.EventHandler(this.timer3_Tick);
  61. //
  62. // openFileDialog1
  63. //
  64. this.openFileDialog1.FileName = "openFileDialog1";
  65. //
  66. // menuStrip1
  67. //
  68. this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  69. this.fileToolStripMenuItem,
  70. this.pauseToolStripMenuItem,
  71. this.brickToolStripMenuItem});
  72. this.menuStrip1.Location = new System.Drawing.Point(0, 0);
  73. this.menuStrip1.Name = "menuStrip1";
  74. this.menuStrip1.Size = new System.Drawing.Size(422, 28);
  75. this.menuStrip1.TabIndex = 0;
  76. this.menuStrip1.Text = "menuStrip1";
  77. //
  78. // fileToolStripMenuItem
  79. //
  80. this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  81. this.exitToolStripMenuItem});
  82. this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
  83. this.fileToolStripMenuItem.Size = new System.Drawing.Size(44, 24);
  84. this.fileToolStripMenuItem.Text = "File";
  85. //
  86. // exitToolStripMenuItem
  87. //
  88. this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
  89. this.exitToolStripMenuItem.Size = new System.Drawing.Size(152, 24);
  90. this.exitToolStripMenuItem.Text = "Exit";
  91. this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
  92. //
  93. // pauseToolStripMenuItem
  94. //
  95. this.pauseToolStripMenuItem.Name = "pauseToolStripMenuItem";
  96. this.pauseToolStripMenuItem.Size = new System.Drawing.Size(59, 24);
  97. this.pauseToolStripMenuItem.Text = "Pause";
  98. this.pauseToolStripMenuItem.Click += new System.EventHandler(this.pauseToolStripMenuItem_Click);
  99. //
  100. // label1
  101. //
  102. this.label1.AutoSize = true;
  103. this.label1.Location = new System.Drawing.Point(336, 0);
  104. this.label1.Name = "label1";
  105. this.label1.Size = new System.Drawing.Size(16, 17);
  106. this.label1.TabIndex = 1;
  107. this.label1.Text = "0";
  108. //
  109. // label2
  110. //
  111. this.label2.AutoSize = true;
  112. this.label2.Location = new System.Drawing.Point(217, 0);
  113. this.label2.Name = "label2";
  114. this.label2.Size = new System.Drawing.Size(53, 17);
  115. this.label2.TabIndex = 2;
  116. this.label2.Text = "Score: ";
  117. //
  118. // brickToolStripMenuItem
  119. //
  120. this.brickToolStripMenuItem.Name = "brickToolStripMenuItem";
  121. this.brickToolStripMenuItem.Size = new System.Drawing.Size(53, 24);
  122. this.brickToolStripMenuItem.Text = "Brick";
  123. this.brickToolStripMenuItem.Click += new System.EventHandler(this.brickToolStripMenuItem_Click);
  124. //
  125. // Form1
  126. //
  127. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
  128. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  129. this.ClientSize = new System.Drawing.Size(422, 313);
  130. this.Controls.Add(this.label2);
  131. this.Controls.Add(this.label1);
  132. this.Controls.Add(this.menuStrip1);
  133. this.DoubleBuffered = true;
  134. this.MainMenuStrip = this.menuStrip1;
  135. this.Name = "Form1";
  136. this.Text = "Form1";
  137. this.Deactivate += new System.EventHandler(this.exitToolStripMenuItem_Click);
  138. this.Load += new System.EventHandler(this.Form1_Load);
  139. this.Paint += new System.Windows.Forms.PaintEventHandler(this.Form1_Paint);
  140. this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Form1_KeyDown);
  141. this.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Form1_KeyPress);
  142. this.MouseClick += new System.Windows.Forms.MouseEventHandler(this.Form1_MouseClick);
  143. this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Form1_MouseDown);
  144. this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.Form1_MouseMove);
  145. this.MouseUp += new System.Windows.Forms.MouseEventHandler(this.Form1_MouseUp);
  146. this.menuStrip1.ResumeLayout(false);
  147. this.menuStrip1.PerformLayout();
  148. this.ResumeLayout(false);
  149. this.PerformLayout();
  150.  
  151. }
  152.  
  153. #endregion
  154.  
  155. private System.Windows.Forms.Timer timer1;
  156. private System.Windows.Forms.Timer timer2;
  157. private System.Windows.Forms.Timer timer3;
  158. private System.Windows.Forms.OpenFileDialog openFileDialog1;
  159. private System.Windows.Forms.MenuStrip menuStrip1;
  160. private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
  161. private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem;
  162. private System.Windows.Forms.ToolStripMenuItem pauseToolStripMenuItem;
  163. private System.Windows.Forms.Label label1;
  164. private System.Windows.Forms.Label label2;
  165. private System.Windows.Forms.ToolStripMenuItem brickToolStripMenuItem;
  166. }
  167. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement