MainForm.Designer.cs.orig 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  1. namespace Fietsclient
  2. {
  3. partial class MainForm
  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. System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
  29. System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
  30. System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
  31. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
  32. this.textBox1 = new System.Windows.Forms.TextBox();
  33. this.button2 = new System.Windows.Forms.Button();
  34. this.button3 = new System.Windows.Forms.Button();
  35. <<<<<<< HEAD
  36. this.checkedListBox1 = new System.Windows.Forms.CheckedListBox();
  37. this.cmbComport = new System.Windows.Forms.ComboBox();
  38. this.menuStrip1 = new System.Windows.Forms.MenuStrip();
  39. this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  40. this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
  41. this.pgbComport = new System.Windows.Forms.ProgressBar();
  42. this.menuStrip1.SuspendLayout();
  43. ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
  44. =======
  45. this.cmbComport = new System.Windows.Forms.ComboBox();
  46. >>>>>>> Comport
  47. this.SuspendLayout();
  48. //
  49. // textBox1
  50. //
  51. this.textBox1.BackColor = System.Drawing.Color.Black;
  52. this.textBox1.ForeColor = System.Drawing.Color.White;
  53. this.textBox1.Location = new System.Drawing.Point(10, 345);
  54. this.textBox1.Multiline = true;
  55. this.textBox1.Name = "textBox1";
  56. this.textBox1.ReadOnly = true;
  57. this.textBox1.Size = new System.Drawing.Size(776, 164);
  58. this.textBox1.TabIndex = 1;
  59. //
  60. // button2
  61. //
  62. this.button2.Location = new System.Drawing.Point(10, 229);
  63. this.button2.Name = "button2";
  64. this.button2.Size = new System.Drawing.Size(210, 101);
  65. this.button2.TabIndex = 2;
  66. this.button2.Text = "start asking for status";
  67. this.button2.UseVisualStyleBackColor = true;
  68. this.button2.Click += new System.EventHandler(this.button2_Click);
  69. //
  70. // button3
  71. //
  72. this.button3.BackColor = System.Drawing.SystemColors.ControlLight;
  73. this.button3.Location = new System.Drawing.Point(119, 39);
  74. this.button3.Name = "button3";
  75. this.button3.Size = new System.Drawing.Size(101, 23);
  76. this.button3.TabIndex = 3;
  77. this.button3.Text = "close comport";
  78. this.button3.UseVisualStyleBackColor = false;
  79. this.button3.Click += new System.EventHandler(this.button3_Click);
  80. //
  81. <<<<<<< HEAD
  82. // checkedListBox1
  83. //
  84. this.checkedListBox1.FormattingEnabled = true;
  85. this.checkedListBox1.Items.AddRange(new object[] {
  86. "pulse",
  87. "rpm",
  88. "speed",
  89. "distance",
  90. "requestedpower",
  91. "energy",
  92. "time",
  93. "actualpower"});
  94. this.checkedListBox1.Location = new System.Drawing.Point(10, 100);
  95. this.checkedListBox1.Margin = new System.Windows.Forms.Padding(2);
  96. this.checkedListBox1.Name = "checkedListBox1";
  97. this.checkedListBox1.Size = new System.Drawing.Size(210, 124);
  98. this.checkedListBox1.TabIndex = 4;
  99. //
  100. // cmbComport
  101. //
  102. this.cmbComport.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  103. this.cmbComport.FormattingEnabled = true;
  104. this.cmbComport.Location = new System.Drawing.Point(11, 39);
  105. this.cmbComport.Margin = new System.Windows.Forms.Padding(2);
  106. this.cmbComport.Name = "cmbComport";
  107. this.cmbComport.Size = new System.Drawing.Size(100, 21);
  108. this.cmbComport.TabIndex = 5;
  109. this.cmbComport.SelectionChangeCommitted += new System.EventHandler(this.cmbComport_SelectionChangeCommitted);
  110. //
  111. // menuStrip1
  112. //
  113. this.menuStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
  114. this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  115. this.helpToolStripMenuItem});
  116. this.menuStrip1.Location = new System.Drawing.Point(0, 0);
  117. this.menuStrip1.Name = "menuStrip1";
  118. this.menuStrip1.Padding = new System.Windows.Forms.Padding(4, 2, 0, 2);
  119. this.menuStrip1.Size = new System.Drawing.Size(794, 24);
  120. this.menuStrip1.TabIndex = 6;
  121. this.menuStrip1.Text = "menuStrip1";
  122. //
  123. // helpToolStripMenuItem
  124. //
  125. this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
  126. this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
  127. this.helpToolStripMenuItem.Text = "Help";
  128. //
  129. // chart1
  130. //
  131. chartArea1.Name = "ChartArea1";
  132. this.chart1.ChartAreas.Add(chartArea1);
  133. legend1.Name = "Legend1";
  134. this.chart1.Legends.Add(legend1);
  135. this.chart1.Location = new System.Drawing.Point(237, 39);
  136. this.chart1.Margin = new System.Windows.Forms.Padding(2);
  137. this.chart1.Name = "chart1";
  138. series1.ChartArea = "ChartArea1";
  139. series1.Legend = "Legend1";
  140. series1.Name = "Series1";
  141. this.chart1.Series.Add(series1);
  142. this.chart1.Size = new System.Drawing.Size(548, 291);
  143. this.chart1.TabIndex = 7;
  144. this.chart1.Text = "chart1";
  145. //
  146. // pgbComport
  147. //
  148. this.pgbComport.Location = new System.Drawing.Point(13, 66);
  149. this.pgbComport.Name = "pgbComport";
  150. this.pgbComport.Size = new System.Drawing.Size(207, 23);
  151. this.pgbComport.TabIndex = 8;
  152. //
  153. =======
  154. // cmbComport
  155. //
  156. this.cmbComport.FormattingEnabled = true;
  157. this.cmbComport.Location = new System.Drawing.Point(188, 12);
  158. this.cmbComport.Name = "cmbComport";
  159. this.cmbComport.Size = new System.Drawing.Size(121, 21);
  160. this.cmbComport.TabIndex = 4;
  161. this.cmbComport.SelectionChangeCommitted += new System.EventHandler(this.cmbComport_SelectionChangeCommitted);
  162. //
  163. >>>>>>> Comport
  164. // MainForm
  165. //
  166. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  167. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  168. this.AutoScroll = true;
  169. <<<<<<< HEAD
  170. this.ClientSize = new System.Drawing.Size(794, 519);
  171. this.Controls.Add(this.pgbComport);
  172. this.Controls.Add(this.chart1);
  173. this.Controls.Add(this.cmbComport);
  174. this.Controls.Add(this.checkedListBox1);
  175. =======
  176. this.ClientSize = new System.Drawing.Size(830, 343);
  177. this.Controls.Add(this.cmbComport);
  178. >>>>>>> Comport
  179. this.Controls.Add(this.button3);
  180. this.Controls.Add(this.button2);
  181. this.Controls.Add(this.textBox1);
  182. this.Controls.Add(this.menuStrip1);
  183. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  184. this.MainMenuStrip = this.menuStrip1;
  185. this.Name = "MainForm";
  186. this.Text = "Client";
  187. this.menuStrip1.ResumeLayout(false);
  188. this.menuStrip1.PerformLayout();
  189. ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
  190. this.ResumeLayout(false);
  191. this.PerformLayout();
  192. }
  193. #endregion
  194. private System.Windows.Forms.TextBox textBox1;
  195. private System.Windows.Forms.Button button2;
  196. private System.Windows.Forms.Button button3;
  197. <<<<<<< HEAD
  198. private System.Windows.Forms.CheckedListBox checkedListBox1;
  199. private System.Windows.Forms.ComboBox cmbComport;
  200. private System.Windows.Forms.MenuStrip menuStrip1;
  201. private System.Windows.Forms.ToolStripMenuItem helpToolStripMenuItem;
  202. private System.Windows.Forms.DataVisualization.Charting.Chart chart1;
  203. private System.Windows.Forms.ProgressBar pgbComport;
  204. =======
  205. private System.Windows.Forms.ComboBox cmbComport;
  206. >>>>>>> Comport
  207. }
  208. }