using System; using System.IO.Ports; using System.Windows.Forms; namespace ErgometerApplication { partial class ClientApplicatie { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.components = new System.ComponentModel.Container(); this.updateTimer = new System.Windows.Forms.Timer(this.components); this.beeptimer = new System.Windows.Forms.Timer(this.components); this.panelClientContainer = new System.Windows.Forms.Panel(); this.panelDataViewLeft = new System.Windows.Forms.Panel(); this.panelClientChat = new ErgometerApplication.PanelClientChat(); this.panelLogin = new ErgometerApplication.PanelLogin(this); this.panelGatherInfo = new PanelGatherInfo(this); this.panelTopBar = new System.Windows.Forms.Panel(); this.buttonLogOff = new System.Windows.Forms.Button(); this.labelUsername = new System.Windows.Forms.Label(); this.labelHallo = new System.Windows.Forms.Label(); this.heartBeat = new PanelClientData("Hartslag", 50, 220); this.RPM = new PanelClientData("RPM", 30, 70); this.power = new PanelClientData("Weerstand", 25, 400); this.actualpower = new PanelClientData("Huidige Weerstand", 0, 400); this.time = new PanelClientData("Tijd", 0, 0); this.steps = new PanelClientSteps(); this.panelClientContainer.SuspendLayout(); this.panelTopBar.SuspendLayout(); this.SuspendLayout(); // // updateTimer // this.updateTimer.Interval = 500; this.updateTimer.Tick += new System.EventHandler(this.updateTimer_Tick); // // beeptimer // this.beeptimer.Interval = 833; this.beeptimer.Tick += new System.EventHandler(this.updateBeep); // // panelClientContainer // this.panelClientContainer.Controls.Add(this.panelDataViewLeft); this.panelClientContainer.Controls.Add(this.panelClientChat); this.panelClientContainer.Dock = System.Windows.Forms.DockStyle.Fill; this.panelClientContainer.Location = new System.Drawing.Point(0, 0); this.panelClientContainer.Name = "panelClientContainer"; this.panelClientContainer.Size = new System.Drawing.Size(800, 600); this.panelClientContainer.TabIndex = 0; // // panelDataViewLeft // this.panelDataViewLeft.Dock = System.Windows.Forms.DockStyle.Fill; this.panelDataViewLeft.Location = new System.Drawing.Point(0, 0); this.panelDataViewLeft.Name = "panelDataViewLeft"; this.panelDataViewLeft.Size = new System.Drawing.Size(18, 600); this.panelDataViewLeft.TabIndex = 3; this.panelDataViewLeft.BackColor = System.Drawing.Color.Gray; this.panelDataViewLeft.Controls.Add(power); this.panelDataViewLeft.Controls.Add(actualpower); this.panelDataViewLeft.Controls.Add(RPM); this.panelDataViewLeft.Controls.Add(heartBeat); this.panelDataViewLeft.Controls.Add(steps); this.panelDataViewLeft.Controls.Add(time); // // panelClientChat // this.panelClientChat.BackColor = System.Drawing.SystemColors.ButtonHighlight; this.panelClientChat.Dock = System.Windows.Forms.DockStyle.Right; this.panelClientChat.Location = new System.Drawing.Point(400, 0); this.panelClientChat.Name = "panelClientChat"; this.panelClientChat.Size = new System.Drawing.Size(400, 600); this.panelClientChat.TabIndex = 2; // // panelTopBar // this.panelTopBar.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); this.panelTopBar.Controls.Add(this.buttonLogOff); this.panelTopBar.Controls.Add(this.labelUsername); this.panelTopBar.Controls.Add(this.labelHallo); this.panelTopBar.Dock = System.Windows.Forms.DockStyle.Top; this.panelTopBar.Location = new System.Drawing.Point(0, 0); this.panelTopBar.Name = "panelTopBar"; this.panelTopBar.Size = new System.Drawing.Size(800, 30); this.panelTopBar.TabIndex = 1; this.panelTopBar.Visible = false; // // buttonLogOff // this.buttonLogOff.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.buttonLogOff.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.buttonLogOff.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.buttonLogOff.Font = new System.Drawing.Font("Segoe UI Light", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.buttonLogOff.Location = new System.Drawing.Point(652, 3); this.buttonLogOff.Name = "buttonLogOff"; this.buttonLogOff.Size = new System.Drawing.Size(130, 23); this.buttonLogOff.TabIndex = 1; this.buttonLogOff.Text = "Stoppen en Afmelden"; this.buttonLogOff.UseVisualStyleBackColor = false; this.buttonLogOff.Click += new System.EventHandler(this.buttonLogOff_Click); // // labelUsername // this.labelUsername.AutoSize = true; this.labelUsername.Font = new System.Drawing.Font("Segoe UI Semilight", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.labelUsername.ForeColor = System.Drawing.Color.White; this.labelUsername.Location = new System.Drawing.Point(49, 3); this.labelUsername.Name = "labelUsername"; this.labelUsername.Size = new System.Drawing.Size(144, 21); this.labelUsername.TabIndex = 0; this.labelUsername.Text = ""; // // labelHallo // this.labelHallo.AutoSize = true; this.labelHallo.Font = new System.Drawing.Font("Segoe UI Semilight", 12F); this.labelHallo.ForeColor = System.Drawing.Color.White; this.labelHallo.Location = new System.Drawing.Point(3, 3); this.labelHallo.Name = "labelHallo"; this.labelHallo.Size = new System.Drawing.Size(54, 21); this.labelHallo.TabIndex = 0; this.labelHallo.Text = "Hallo, "; // // ClientApplicatie // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(700, 550); this.MinimumSize = new System.Drawing.Size(700, 550); this.Controls.Add(this.panelTopBar); this.Controls.Add(this.panelLogin); this.Controls.Add(this.panelGatherInfo); this.Controls.Add(this.panelClientContainer); this.Name = "ClientApplicatie"; this.Text = "Client Applicatie"; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.panelClientContainer.ResumeLayout(false); this.panelTopBar.ResumeLayout(false); this.panelTopBar.PerformLayout(); this.ResumeLayout(false); } #endregion public System.Windows.Forms.Timer updateTimer; public Timer beeptimer; private System.Windows.Forms.Panel panelClientContainer; private PanelClientChat panelClientChat; private PanelLogin panelLogin; private PanelGatherInfo panelGatherInfo; private System.Windows.Forms.Panel panelDataViewLeft; private System.Windows.Forms.Panel panelTopBar; private System.Windows.Forms.Button buttonLogOff; private System.Windows.Forms.Label labelUsername; private System.Windows.Forms.Label labelHallo; public PanelClientData heartBeat, RPM, power, seconds, actualpower, time; public PanelClientSteps steps; } }