ucSettings.Designer.cs 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. namespace Fietsclient.User_Controls
  2. {
  3. partial class UcSettings
  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 Component 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.cmbChooseCom = new System.Windows.Forms.ComboBox();
  29. this.pgbInit = new System.Windows.Forms.ProgressBar();
  30. this.btnCloseCom = new System.Windows.Forms.Button();
  31. this.btnStartAsking = new System.Windows.Forms.Button();
  32. this.label1 = new System.Windows.Forms.Label();
  33. this.cmbMode = new System.Windows.Forms.ComboBox();
  34. this.setModeBTN = new System.Windows.Forms.Button();
  35. this.modeField = new System.Windows.Forms.Label();
  36. this.modeTXTBox = new System.Windows.Forms.TextBox();
  37. this.modeSeconds = new System.Windows.Forms.TextBox();
  38. this.modeMinutes = new System.Windows.Forms.TextBox();
  39. this.label2 = new System.Windows.Forms.Label();
  40. this.pwrBox = new System.Windows.Forms.TextBox();
  41. this.setPWRBTN = new System.Windows.Forms.Button();
  42. this.SuspendLayout();
  43. //
  44. // cmbChooseCom
  45. //
  46. this.cmbChooseCom.FormattingEnabled = true;
  47. this.cmbChooseCom.Location = new System.Drawing.Point(28, 34);
  48. this.cmbChooseCom.Name = "cmbChooseCom";
  49. this.cmbChooseCom.Size = new System.Drawing.Size(129, 24);
  50. this.cmbChooseCom.TabIndex = 0;
  51. this.cmbChooseCom.SelectionChangeCommitted += new System.EventHandler(this.cmbChooseCom_SelectionChangeCommitted);
  52. //
  53. // pgbInit
  54. //
  55. this.pgbInit.Location = new System.Drawing.Point(28, 64);
  56. this.pgbInit.Name = "pgbInit";
  57. this.pgbInit.Size = new System.Drawing.Size(129, 23);
  58. this.pgbInit.TabIndex = 1;
  59. //
  60. // btnCloseCom
  61. //
  62. this.btnCloseCom.Location = new System.Drawing.Point(177, 64);
  63. this.btnCloseCom.Name = "btnCloseCom";
  64. this.btnCloseCom.Size = new System.Drawing.Size(181, 23);
  65. this.btnCloseCom.TabIndex = 3;
  66. this.btnCloseCom.Text = "Close Comport";
  67. this.btnCloseCom.UseVisualStyleBackColor = true;
  68. this.btnCloseCom.Click += new System.EventHandler(this.btnCloseCom_Click);
  69. //
  70. // btnStartAsking
  71. //
  72. this.btnStartAsking.Location = new System.Drawing.Point(177, 34);
  73. this.btnStartAsking.Name = "btnStartAsking";
  74. this.btnStartAsking.Size = new System.Drawing.Size(181, 23);
  75. this.btnStartAsking.TabIndex = 4;
  76. this.btnStartAsking.Text = "Start Asking Status";
  77. this.btnStartAsking.UseVisualStyleBackColor = true;
  78. this.btnStartAsking.Click += new System.EventHandler(this.btnStartAsking_Click);
  79. //
  80. // label1
  81. //
  82. this.label1.AutoSize = true;
  83. this.label1.Location = new System.Drawing.Point(25, 138);
  84. this.label1.Name = "label1";
  85. this.label1.Size = new System.Drawing.Size(107, 17);
  86. this.label1.TabIndex = 5;
  87. this.label1.Text = "Choose mode...";
  88. //
  89. // cmbMode
  90. //
  91. this.cmbMode.FormattingEnabled = true;
  92. this.cmbMode.Items.AddRange(new object[] {
  93. "Distance",
  94. "Time"});
  95. this.cmbMode.Location = new System.Drawing.Point(154, 135);
  96. this.cmbMode.Name = "cmbMode";
  97. this.cmbMode.Size = new System.Drawing.Size(172, 24);
  98. this.cmbMode.TabIndex = 6;
  99. this.cmbMode.SelectedIndexChanged += new System.EventHandler(this.cmbMode_SelectedIndexChanged);
  100. //
  101. // setModeBTN
  102. //
  103. this.setModeBTN.Location = new System.Drawing.Point(154, 222);
  104. this.setModeBTN.Name = "setModeBTN";
  105. this.setModeBTN.Size = new System.Drawing.Size(172, 33);
  106. this.setModeBTN.TabIndex = 7;
  107. this.setModeBTN.Text = "Set Mode";
  108. this.setModeBTN.UseVisualStyleBackColor = true;
  109. this.setModeBTN.Click += new System.EventHandler(this.setModeBTN_Click);
  110. //
  111. // modeField
  112. //
  113. this.modeField.AutoSize = true;
  114. this.modeField.Location = new System.Drawing.Point(14, 184);
  115. this.modeField.Name = "modeField";
  116. this.modeField.RightToLeft = System.Windows.Forms.RightToLeft.No;
  117. this.modeField.Size = new System.Drawing.Size(0, 17);
  118. this.modeField.TabIndex = 9;
  119. this.modeField.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  120. //
  121. // modeTXTBox
  122. //
  123. this.modeTXTBox.Location = new System.Drawing.Point(154, 181);
  124. this.modeTXTBox.Name = "modeTXTBox";
  125. this.modeTXTBox.Size = new System.Drawing.Size(172, 22);
  126. this.modeTXTBox.TabIndex = 11;
  127. this.modeTXTBox.Visible = false;
  128. //
  129. // modeSeconds
  130. //
  131. this.modeSeconds.Location = new System.Drawing.Point(239, 181);
  132. this.modeSeconds.Name = "modeSeconds";
  133. this.modeSeconds.Size = new System.Drawing.Size(87, 22);
  134. this.modeSeconds.TabIndex = 12;
  135. this.modeSeconds.Visible = false;
  136. //
  137. // modeMinutes
  138. //
  139. this.modeMinutes.Location = new System.Drawing.Point(154, 181);
  140. this.modeMinutes.Name = "modeMinutes";
  141. this.modeMinutes.Size = new System.Drawing.Size(79, 22);
  142. this.modeMinutes.TabIndex = 13;
  143. this.modeMinutes.Visible = false;
  144. //
  145. // label2
  146. //
  147. this.label2.AutoSize = true;
  148. this.label2.Location = new System.Drawing.Point(404, 137);
  149. this.label2.Name = "label2";
  150. this.label2.Size = new System.Drawing.Size(47, 17);
  151. this.label2.TabIndex = 14;
  152. this.label2.Text = "Power";
  153. //
  154. // pwrBox
  155. //
  156. this.pwrBox.Location = new System.Drawing.Point(457, 134);
  157. this.pwrBox.Name = "pwrBox";
  158. this.pwrBox.Size = new System.Drawing.Size(100, 22);
  159. this.pwrBox.TabIndex = 15;
  160. //
  161. // setPWRBTN
  162. //
  163. this.setPWRBTN.Location = new System.Drawing.Point(457, 162);
  164. this.setPWRBTN.Name = "setPWRBTN";
  165. this.setPWRBTN.Size = new System.Drawing.Size(100, 39);
  166. this.setPWRBTN.TabIndex = 16;
  167. this.setPWRBTN.Text = "Set Power";
  168. this.setPWRBTN.UseVisualStyleBackColor = true;
  169. this.setPWRBTN.Click += new System.EventHandler(this.setPWRBTN_Click);
  170. //
  171. // UcSettings
  172. //
  173. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
  174. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  175. this.Controls.Add(this.setPWRBTN);
  176. this.Controls.Add(this.pwrBox);
  177. this.Controls.Add(this.label2);
  178. this.Controls.Add(this.modeMinutes);
  179. this.Controls.Add(this.modeSeconds);
  180. this.Controls.Add(this.modeTXTBox);
  181. this.Controls.Add(this.modeField);
  182. this.Controls.Add(this.setModeBTN);
  183. this.Controls.Add(this.cmbMode);
  184. this.Controls.Add(this.label1);
  185. this.Controls.Add(this.btnStartAsking);
  186. this.Controls.Add(this.btnCloseCom);
  187. this.Controls.Add(this.pgbInit);
  188. this.Controls.Add(this.cmbChooseCom);
  189. this.Name = "UcSettings";
  190. this.Size = new System.Drawing.Size(1035, 596);
  191. this.ResumeLayout(false);
  192. this.PerformLayout();
  193. }
  194. #endregion
  195. private System.Windows.Forms.ComboBox cmbChooseCom;
  196. private System.Windows.Forms.ProgressBar pgbInit;
  197. private System.Windows.Forms.Button btnCloseCom;
  198. private System.Windows.Forms.Button btnStartAsking;
  199. private System.Windows.Forms.Label label1;
  200. private System.Windows.Forms.ComboBox cmbMode;
  201. private System.Windows.Forms.Button setModeBTN;
  202. private System.Windows.Forms.Label modeField;
  203. private System.Windows.Forms.TextBox modeTXTBox;
  204. private System.Windows.Forms.TextBox modeSeconds;
  205. private System.Windows.Forms.TextBox modeMinutes;
  206. private System.Windows.Forms.Label label2;
  207. private System.Windows.Forms.TextBox pwrBox;
  208. private System.Windows.Forms.Button setPWRBTN;
  209. }
  210. }