using System; namespace ErgometerDoctorApplication { partial class SessionWindow { /// /// 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.SuspendLayout(); this.components = new System.ComponentModel.Container(); this.panelClientContainer = new System.Windows.Forms.Panel(); this.panelDataViewLeft = new System.Windows.Forms.Panel(); this.panelGraphView = new ErgometerDoctorApplication.PanelGraphView(); this.panelClientChat = new ErgometerDoctorApplication.PanelClientChat(Session, ClientName); this.panelTopBar = new System.Windows.Forms.Panel(); 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", 0, 120); this.speed = new PanelClientData("Snelheid", 0, 50); this.distance = new PanelClientData("Afstand (km)", 0, 100); this.power = new PanelClientData("Weerstand", 25, 400); this.energy = new PanelClientData("Energie", 0, 200); this.actualpower = new PanelClientData("Absolute Weerstand", 0, 400); this.time = new PanelClientData("Tijd", 0, 400); this.steps = new PanelClientSteps(); this.panelClientContainer.SuspendLayout(); this.panelTopBar.SuspendLayout(); // // panelClientContainer // this.panelClientContainer.Controls.Add(this.panelGraphView); 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.Left; 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(heartBeat); this.panelDataViewLeft.Controls.Add(RPM); this.panelDataViewLeft.Controls.Add(speed); this.panelDataViewLeft.Controls.Add(distance); this.panelDataViewLeft.Controls.Add(power); this.panelDataViewLeft.Controls.Add(energy); this.panelDataViewLeft.Controls.Add(actualpower); 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.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; // // 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, "; // // SessionWindow // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(800, 600); this.MinimumSize = new System.Drawing.Size(700, 550); this.Controls.Add(this.panelTopBar); this.Controls.Add(this.panelClientContainer); this.Name = "SessionWindow"; this.Text = "Sessie: " + ClientName; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Resize += new System.EventHandler(this.ClientApplicatie_Resize); this.panelClientContainer.ResumeLayout(false); this.panelTopBar.ResumeLayout(false); this.panelTopBar.PerformLayout(); this.ResumeLayout(false); } #endregion private System.Windows.Forms.Panel panelClientContainer; public PanelClientChat panelClientChat; public PanelGraphView panelGraphView; private System.Windows.Forms.Panel panelDataViewLeft; private System.Windows.Forms.Panel panelTopBar; private System.Windows.Forms.Label labelUsername; private System.Windows.Forms.Label labelHallo; public PanelClientData heartBeat, RPM, speed, distance, power, energy, seconds, actualpower, time; public PanelClientSteps steps; private void createTitle() { if (ActiveSession) { this.Text = "Actieve Sessie: " + ClientName; } else { this.Text = "Afgelopen Sessie: " + ClientName; } } } }