MainForm.Designer.cs 8.5 KB

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