Form1.Designer.cs 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. namespace _08_2_Threads
  2. {
  3. partial class Form1
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.button1 = new System.Windows.Forms.Button();
  29. this.listBox1 = new System.Windows.Forms.ListBox();
  30. this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
  31. this.button2 = new System.Windows.Forms.Button();
  32. this.progressBar1 = new System.Windows.Forms.ProgressBar();
  33. this.label1 = new System.Windows.Forms.Label();
  34. this.button3 = new System.Windows.Forms.Button();
  35. this.button4 = new System.Windows.Forms.Button();
  36. this.button5 = new System.Windows.Forms.Button();
  37. this.button6 = new System.Windows.Forms.Button();
  38. this.button7 = new System.Windows.Forms.Button();
  39. this.button8 = new System.Windows.Forms.Button();
  40. this.button9 = new System.Windows.Forms.Button();
  41. this.button10 = new System.Windows.Forms.Button();
  42. this.SuspendLayout();
  43. //
  44. // button1
  45. //
  46. this.button1.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
  47. this.button1.Location = new System.Drawing.Point(27, 12);
  48. this.button1.Name = "button1";
  49. this.button1.Size = new System.Drawing.Size(135, 54);
  50. this.button1.TabIndex = 0;
  51. this.button1.Text = "button1";
  52. this.button1.UseVisualStyleBackColor = true;
  53. this.button1.Click += new System.EventHandler(this.button1_Click);
  54. //
  55. // listBox1
  56. //
  57. this.listBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
  58. this.listBox1.FormattingEnabled = true;
  59. this.listBox1.ItemHeight = 25;
  60. this.listBox1.Location = new System.Drawing.Point(27, 72);
  61. this.listBox1.Name = "listBox1";
  62. this.listBox1.Size = new System.Drawing.Size(155, 279);
  63. this.listBox1.TabIndex = 1;
  64. //
  65. // backgroundWorker1
  66. //
  67. this.backgroundWorker1.WorkerReportsProgress = true;
  68. this.backgroundWorker1.WorkerSupportsCancellation = true;
  69. this.backgroundWorker1.DoWork += new System.ComponentModel.DoWorkEventHandler(this.backgroundWorker1_DoWork);
  70. this.backgroundWorker1.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.backgroundWorker1_ProgressChanged);
  71. this.backgroundWorker1.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.backgroundWorker1_RunWorkerCompleted);
  72. //
  73. // button2
  74. //
  75. this.button2.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
  76. this.button2.Location = new System.Drawing.Point(186, 12);
  77. this.button2.Name = "button2";
  78. this.button2.Size = new System.Drawing.Size(135, 54);
  79. this.button2.TabIndex = 2;
  80. this.button2.Text = "STOP";
  81. this.button2.UseVisualStyleBackColor = true;
  82. this.button2.Click += new System.EventHandler(this.button2_Click);
  83. //
  84. // progressBar1
  85. //
  86. this.progressBar1.Location = new System.Drawing.Point(39, 387);
  87. this.progressBar1.Name = "progressBar1";
  88. this.progressBar1.Size = new System.Drawing.Size(461, 23);
  89. this.progressBar1.TabIndex = 3;
  90. //
  91. // label1
  92. //
  93. this.label1.AutoSize = true;
  94. this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
  95. this.label1.Location = new System.Drawing.Point(56, 421);
  96. this.label1.Name = "label1";
  97. this.label1.Size = new System.Drawing.Size(70, 25);
  98. this.label1.TabIndex = 4;
  99. this.label1.Text = "label1";
  100. //
  101. // button3
  102. //
  103. this.button3.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
  104. this.button3.Location = new System.Drawing.Point(176, 80);
  105. this.button3.Name = "button3";
  106. this.button3.Size = new System.Drawing.Size(135, 54);
  107. this.button3.TabIndex = 5;
  108. this.button3.Text = "bw Start";
  109. this.button3.UseVisualStyleBackColor = true;
  110. this.button3.Click += new System.EventHandler(this.button3_Click);
  111. //
  112. // button4
  113. //
  114. this.button4.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
  115. this.button4.Location = new System.Drawing.Point(188, 140);
  116. this.button4.Name = "button4";
  117. this.button4.Size = new System.Drawing.Size(135, 54);
  118. this.button4.TabIndex = 6;
  119. this.button4.Text = "STOP";
  120. this.button4.UseVisualStyleBackColor = true;
  121. this.button4.Click += new System.EventHandler(this.button4_Click);
  122. //
  123. // button5
  124. //
  125. this.button5.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
  126. this.button5.Location = new System.Drawing.Point(499, 80);
  127. this.button5.Name = "button5";
  128. this.button5.Size = new System.Drawing.Size(135, 54);
  129. this.button5.TabIndex = 8;
  130. this.button5.Text = "pause";
  131. this.button5.UseVisualStyleBackColor = true;
  132. this.button5.Click += new System.EventHandler(this.button5_Click);
  133. //
  134. // button6
  135. //
  136. this.button6.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
  137. this.button6.Location = new System.Drawing.Point(499, 20);
  138. this.button6.Name = "button6";
  139. this.button6.Size = new System.Drawing.Size(153, 54);
  140. this.button6.TabIndex = 7;
  141. this.button6.Text = "thread Start";
  142. this.button6.UseVisualStyleBackColor = true;
  143. this.button6.Click += new System.EventHandler(this.button6_Click);
  144. //
  145. // button7
  146. //
  147. this.button7.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
  148. this.button7.Location = new System.Drawing.Point(499, 140);
  149. this.button7.Name = "button7";
  150. this.button7.Size = new System.Drawing.Size(135, 54);
  151. this.button7.TabIndex = 9;
  152. this.button7.Text = "cont";
  153. this.button7.UseVisualStyleBackColor = true;
  154. this.button7.Click += new System.EventHandler(this.button7_Click);
  155. //
  156. // button8
  157. //
  158. this.button8.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
  159. this.button8.Location = new System.Drawing.Point(499, 200);
  160. this.button8.Name = "button8";
  161. this.button8.Size = new System.Drawing.Size(135, 54);
  162. this.button8.TabIndex = 10;
  163. this.button8.Text = "STOP";
  164. this.button8.UseVisualStyleBackColor = true;
  165. this.button8.Click += new System.EventHandler(this.button8_Click);
  166. //
  167. // button9
  168. //
  169. this.button9.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
  170. this.button9.Location = new System.Drawing.Point(658, 20);
  171. this.button9.Name = "button9";
  172. this.button9.Size = new System.Drawing.Size(153, 54);
  173. this.button9.TabIndex = 11;
  174. this.button9.Text = "thread Start";
  175. this.button9.UseVisualStyleBackColor = true;
  176. this.button9.Click += new System.EventHandler(this.button9_Click);
  177. //
  178. // button10
  179. //
  180. this.button10.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
  181. this.button10.Location = new System.Drawing.Point(1006, 12);
  182. this.button10.Name = "button10";
  183. this.button10.Size = new System.Drawing.Size(153, 54);
  184. this.button10.TabIndex = 12;
  185. this.button10.Text = "task";
  186. this.button10.UseVisualStyleBackColor = true;
  187. this.button10.Click += new System.EventHandler(this.button10_Click);
  188. //
  189. // Form1
  190. //
  191. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  192. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  193. this.ClientSize = new System.Drawing.Size(1338, 450);
  194. this.Controls.Add(this.button10);
  195. this.Controls.Add(this.button9);
  196. this.Controls.Add(this.button8);
  197. this.Controls.Add(this.button7);
  198. this.Controls.Add(this.button5);
  199. this.Controls.Add(this.button6);
  200. this.Controls.Add(this.button4);
  201. this.Controls.Add(this.button3);
  202. this.Controls.Add(this.label1);
  203. this.Controls.Add(this.progressBar1);
  204. this.Controls.Add(this.button2);
  205. this.Controls.Add(this.listBox1);
  206. this.Controls.Add(this.button1);
  207. this.Name = "Form1";
  208. this.Text = "Form1";
  209. this.ResumeLayout(false);
  210. this.PerformLayout();
  211. }
  212. #endregion
  213. private System.Windows.Forms.Button button1;
  214. private System.Windows.Forms.ListBox listBox1;
  215. private System.ComponentModel.BackgroundWorker backgroundWorker1;
  216. private System.Windows.Forms.Button button2;
  217. private System.Windows.Forms.ProgressBar progressBar1;
  218. private System.Windows.Forms.Label label1;
  219. private System.Windows.Forms.Button button3;
  220. private System.Windows.Forms.Button button4;
  221. private System.Windows.Forms.Button button5;
  222. private System.Windows.Forms.Button button6;
  223. private System.Windows.Forms.Button button7;
  224. private System.Windows.Forms.Button button8;
  225. private System.Windows.Forms.Button button9;
  226. private System.Windows.Forms.Button button10;
  227. }
  228. }