ClientApplicatie.Designer.cs 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. using System;
  2. using System.IO.Ports;
  3. using System.Windows.Forms;
  4. namespace ErgometerApplication
  5. {
  6. partial class ClientApplicatie
  7. {
  8. /// <summary>
  9. /// Required designer variable.
  10. /// </summary>
  11. private System.ComponentModel.IContainer components = null;
  12. /// <summary>
  13. /// Clean up any resources being used.
  14. /// </summary>
  15. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  16. protected override void Dispose(bool disposing)
  17. {
  18. if (disposing && (components != null))
  19. {
  20. components.Dispose();
  21. }
  22. base.Dispose(disposing);
  23. }
  24. #region Windows Form Designer generated code
  25. /// <summary>
  26. /// Required method for Designer support - do not modify
  27. /// the contents of this method with the code editor.
  28. /// </summary>
  29. private void InitializeComponent()
  30. {
  31. this.components = new System.ComponentModel.Container();
  32. this.updateTimer = new System.Windows.Forms.Timer(this.components);
  33. this.beeptimer = new System.Windows.Forms.Timer(this.components);
  34. this.panelClientContainer = new System.Windows.Forms.Panel();
  35. this.panelDataViewLeft = new System.Windows.Forms.Panel();
  36. this.panelClientChat = new ErgometerApplication.PanelClientChat();
  37. this.panelLogin = new ErgometerApplication.PanelLogin(this);
  38. this.panelGatherInfo = new PanelGatherInfo(this);
  39. this.panelTopBar = new System.Windows.Forms.Panel();
  40. this.buttonLogOff = new System.Windows.Forms.Button();
  41. this.labelUsername = new System.Windows.Forms.Label();
  42. this.labelHallo = new System.Windows.Forms.Label();
  43. this.heartBeat = new PanelClientData("Hartslag", 50, 220);
  44. this.RPM = new PanelClientData("RPM", 0, 120);
  45. this.speed = new PanelClientData("Snelheid", 0, 50);
  46. this.distance = new PanelClientData("Afstand (km)", 0, 100);
  47. this.power = new PanelClientData("Weerstand", 25, 400);
  48. this.energy = new PanelClientData("Energie", 0, 200);
  49. this.actualpower = new PanelClientData("Absolute Weerstand", 0, 400);
  50. this.time = new PanelClientData("Tijd", 0, 400);
  51. this.steps = new PanelClientSteps();
  52. this.panelClientContainer.SuspendLayout();
  53. this.panelTopBar.SuspendLayout();
  54. this.SuspendLayout();
  55. //
  56. // updateTimer
  57. //
  58. this.updateTimer.Interval = 500;
  59. this.updateTimer.Tick += new System.EventHandler(this.updateTimer_Tick);
  60. //
  61. // beeptimer
  62. //
  63. this.beeptimer.Interval = 833;
  64. this.beeptimer.Tick += new System.EventHandler(this.updateBeep);
  65. //
  66. // panelClientContainer
  67. //
  68. this.panelClientContainer.Controls.Add(this.panelDataViewLeft);
  69. this.panelClientContainer.Controls.Add(this.panelClientChat);
  70. this.panelClientContainer.Dock = System.Windows.Forms.DockStyle.Fill;
  71. this.panelClientContainer.Location = new System.Drawing.Point(0, 0);
  72. this.panelClientContainer.Name = "panelClientContainer";
  73. this.panelClientContainer.Size = new System.Drawing.Size(800, 600);
  74. this.panelClientContainer.TabIndex = 0;
  75. //
  76. // panelDataViewLeft
  77. //
  78. this.panelDataViewLeft.Dock = System.Windows.Forms.DockStyle.Fill;
  79. this.panelDataViewLeft.Location = new System.Drawing.Point(0, 0);
  80. this.panelDataViewLeft.Name = "panelDataViewLeft";
  81. this.panelDataViewLeft.Size = new System.Drawing.Size(18, 600);
  82. this.panelDataViewLeft.TabIndex = 3;
  83. this.panelDataViewLeft.BackColor = System.Drawing.Color.Gray;
  84. this.panelDataViewLeft.Controls.Add(heartBeat);
  85. this.panelDataViewLeft.Controls.Add(RPM);
  86. this.panelDataViewLeft.Controls.Add(speed);
  87. this.panelDataViewLeft.Controls.Add(distance);
  88. this.panelDataViewLeft.Controls.Add(power);
  89. this.panelDataViewLeft.Controls.Add(energy);
  90. this.panelDataViewLeft.Controls.Add(actualpower);
  91. this.panelDataViewLeft.Controls.Add(steps);
  92. this.panelDataViewLeft.Controls.Add(time);
  93. //
  94. // panelClientChat
  95. //
  96. this.panelClientChat.BackColor = System.Drawing.SystemColors.ButtonHighlight;
  97. this.panelClientChat.Dock = System.Windows.Forms.DockStyle.Right;
  98. this.panelClientChat.Location = new System.Drawing.Point(400, 0);
  99. this.panelClientChat.Name = "panelClientChat";
  100. this.panelClientChat.Size = new System.Drawing.Size(400, 600);
  101. this.panelClientChat.TabIndex = 2;
  102. //
  103. // panelTopBar
  104. //
  105. this.panelTopBar.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
  106. this.panelTopBar.Controls.Add(this.buttonLogOff);
  107. this.panelTopBar.Controls.Add(this.labelUsername);
  108. this.panelTopBar.Controls.Add(this.labelHallo);
  109. this.panelTopBar.Dock = System.Windows.Forms.DockStyle.Top;
  110. this.panelTopBar.Location = new System.Drawing.Point(0, 0);
  111. this.panelTopBar.Name = "panelTopBar";
  112. this.panelTopBar.Size = new System.Drawing.Size(800, 30);
  113. this.panelTopBar.TabIndex = 1;
  114. this.panelTopBar.Visible = false;
  115. //
  116. // buttonLogOff
  117. //
  118. this.buttonLogOff.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  119. this.buttonLogOff.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  120. this.buttonLogOff.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  121. this.buttonLogOff.Font = new System.Drawing.Font("Segoe UI Light", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  122. this.buttonLogOff.Location = new System.Drawing.Point(652, 3);
  123. this.buttonLogOff.Name = "buttonLogOff";
  124. this.buttonLogOff.Size = new System.Drawing.Size(130, 23);
  125. this.buttonLogOff.TabIndex = 1;
  126. this.buttonLogOff.Text = "Stoppen en Afmelden";
  127. this.buttonLogOff.UseVisualStyleBackColor = false;
  128. this.buttonLogOff.Click += new System.EventHandler(this.buttonLogOff_Click);
  129. //
  130. // labelUsername
  131. //
  132. this.labelUsername.AutoSize = true;
  133. this.labelUsername.Font = new System.Drawing.Font("Segoe UI Semilight", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  134. this.labelUsername.ForeColor = System.Drawing.Color.White;
  135. this.labelUsername.Location = new System.Drawing.Point(49, 3);
  136. this.labelUsername.Name = "labelUsername";
  137. this.labelUsername.Size = new System.Drawing.Size(144, 21);
  138. this.labelUsername.TabIndex = 0;
  139. this.labelUsername.Text = "<Gebruikersnaam>";
  140. //
  141. // labelHallo
  142. //
  143. this.labelHallo.AutoSize = true;
  144. this.labelHallo.Font = new System.Drawing.Font("Segoe UI Semilight", 12F);
  145. this.labelHallo.ForeColor = System.Drawing.Color.White;
  146. this.labelHallo.Location = new System.Drawing.Point(3, 3);
  147. this.labelHallo.Name = "labelHallo";
  148. this.labelHallo.Size = new System.Drawing.Size(54, 21);
  149. this.labelHallo.TabIndex = 0;
  150. this.labelHallo.Text = "Hallo, ";
  151. //
  152. // ClientApplicatie
  153. //
  154. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  155. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  156. this.ClientSize = new System.Drawing.Size(700, 550);
  157. this.MinimumSize = new System.Drawing.Size(700, 550);
  158. this.Controls.Add(this.panelTopBar);
  159. this.Controls.Add(this.panelLogin);
  160. this.Controls.Add(this.panelGatherInfo);
  161. this.Controls.Add(this.panelClientContainer);
  162. this.Name = "ClientApplicatie";
  163. this.Text = "Client Applicatie";
  164. this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
  165. this.panelClientContainer.ResumeLayout(false);
  166. this.panelTopBar.ResumeLayout(false);
  167. this.panelTopBar.PerformLayout();
  168. this.ResumeLayout(false);
  169. }
  170. #endregion
  171. public System.Windows.Forms.Timer updateTimer;
  172. public Timer beeptimer;
  173. private System.Windows.Forms.Panel panelClientContainer;
  174. private PanelClientChat panelClientChat;
  175. private PanelLogin panelLogin;
  176. private PanelGatherInfo panelGatherInfo;
  177. private System.Windows.Forms.Panel panelDataViewLeft;
  178. private System.Windows.Forms.Panel panelTopBar;
  179. private System.Windows.Forms.Button buttonLogOff;
  180. private System.Windows.Forms.Label labelUsername;
  181. private System.Windows.Forms.Label labelHallo;
  182. public PanelClientData heartBeat, RPM, speed, distance, power, energy, seconds, actualpower, time;
  183. public PanelClientSteps steps;
  184. }
  185. }