ClientApplicatie.Designer.cs 9.0 KB

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