MainForm.Designer.cs 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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. this.button1 = new System.Windows.Forms.Button();
  29. this.textBox1 = new System.Windows.Forms.TextBox();
  30. this.button2 = new System.Windows.Forms.Button();
  31. this.button3 = new System.Windows.Forms.Button();
  32. this.checkedListBox1 = new System.Windows.Forms.CheckedListBox();
  33. this.SuspendLayout();
  34. //
  35. // button1
  36. //
  37. this.button1.Location = new System.Drawing.Point(16, 15);
  38. this.button1.Margin = new System.Windows.Forms.Padding(4);
  39. this.button1.Name = "button1";
  40. this.button1.Size = new System.Drawing.Size(100, 28);
  41. this.button1.TabIndex = 0;
  42. this.button1.Text = "init comport";
  43. this.button1.UseVisualStyleBackColor = true;
  44. this.button1.Click += new System.EventHandler(this.button1_Click);
  45. //
  46. // textBox1
  47. //
  48. this.textBox1.BackColor = System.Drawing.Color.Black;
  49. this.textBox1.ForeColor = System.Drawing.Color.White;
  50. this.textBox1.Location = new System.Drawing.Point(13, 348);
  51. this.textBox1.Margin = new System.Windows.Forms.Padding(4);
  52. this.textBox1.Multiline = true;
  53. this.textBox1.Name = "textBox1";
  54. this.textBox1.ReadOnly = true;
  55. this.textBox1.Size = new System.Drawing.Size(1073, 174);
  56. this.textBox1.TabIndex = 1;
  57. //
  58. // button2
  59. //
  60. this.button2.Location = new System.Drawing.Point(16, 52);
  61. this.button2.Margin = new System.Windows.Forms.Padding(4);
  62. this.button2.Name = "button2";
  63. this.button2.Size = new System.Drawing.Size(157, 28);
  64. this.button2.TabIndex = 2;
  65. this.button2.Text = "start asking for status";
  66. this.button2.UseVisualStyleBackColor = true;
  67. this.button2.Click += new System.EventHandler(this.button2_Click);
  68. //
  69. // button3
  70. //
  71. this.button3.Location = new System.Drawing.Point(125, 16);
  72. this.button3.Margin = new System.Windows.Forms.Padding(4);
  73. this.button3.Name = "button3";
  74. this.button3.Size = new System.Drawing.Size(117, 28);
  75. this.button3.TabIndex = 3;
  76. this.button3.Text = "close comport";
  77. this.button3.UseVisualStyleBackColor = true;
  78. this.button3.Click += new System.EventHandler(this.button3_Click);
  79. //
  80. // checkedListBox1
  81. //
  82. this.checkedListBox1.FormattingEnabled = true;
  83. this.checkedListBox1.Items.AddRange(new object[] {
  84. "pulse",
  85. "rpm",
  86. "speed",
  87. "distance",
  88. "requestedpower",
  89. "energy",
  90. "time",
  91. "actualpower"});
  92. this.checkedListBox1.Location = new System.Drawing.Point(323, 110);
  93. this.checkedListBox1.Name = "checkedListBox1";
  94. this.checkedListBox1.Size = new System.Drawing.Size(203, 157);
  95. this.checkedListBox1.TabIndex = 4;
  96. //
  97. // MainForm
  98. //
  99. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
  100. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  101. this.AutoScroll = true;
  102. this.ClientSize = new System.Drawing.Size(1107, 535);
  103. this.Controls.Add(this.checkedListBox1);
  104. this.Controls.Add(this.button3);
  105. this.Controls.Add(this.button2);
  106. this.Controls.Add(this.textBox1);
  107. this.Controls.Add(this.button1);
  108. this.Margin = new System.Windows.Forms.Padding(4);
  109. this.Name = "MainForm";
  110. this.Text = "Form1";
  111. this.ResumeLayout(false);
  112. this.PerformLayout();
  113. }
  114. #endregion
  115. private System.Windows.Forms.Button button1;
  116. private System.Windows.Forms.TextBox textBox1;
  117. private System.Windows.Forms.Button button2;
  118. private System.Windows.Forms.Button button3;
  119. private System.Windows.Forms.CheckedListBox checkedListBox1;
  120. }
  121. }