namespace Caisses { partial class Form1 { /// /// 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.pbxRayons = new System.Windows.Forms.PictureBox(); this.pbxCaisses = new System.Windows.Forms.PictureBox(); this.groupBox1 = new System.Windows.Forms.GroupBox(); this.btnAddTime = new System.Windows.Forms.Button(); this.btnAddClients = new System.Windows.Forms.Button(); this.btnStartStop = new System.Windows.Forms.Button(); this.groupBox2 = new System.Windows.Forms.GroupBox(); this.lblTime = new System.Windows.Forms.Label(); this.lblAvgWaitingTime = new System.Windows.Forms.Label(); this.lblClients = new System.Windows.Forms.Label(); this.lblAvaiblePlaces = new System.Windows.Forms.Label(); this.lblClientsWithoutCheckout = new System.Windows.Forms.Label(); this.label1 = new System.Windows.Forms.Label(); this.tmrRefresh = new System.Windows.Forms.Timer(this.components); this.tmrDraw = new System.Windows.Forms.Timer(this.components); ((System.ComponentModel.ISupportInitialize)(this.pbxRayons)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pbxCaisses)).BeginInit(); this.groupBox1.SuspendLayout(); this.groupBox2.SuspendLayout(); this.SuspendLayout(); // // pbxRayons // this.pbxRayons.Location = new System.Drawing.Point(12, 12); this.pbxRayons.Name = "pbxRayons"; this.pbxRayons.Size = new System.Drawing.Size(1044, 357); this.pbxRayons.TabIndex = 0; this.pbxRayons.TabStop = false; // // pbxCaisses // this.pbxCaisses.Location = new System.Drawing.Point(12, 375); this.pbxCaisses.Name = "pbxCaisses"; this.pbxCaisses.Size = new System.Drawing.Size(838, 246); this.pbxCaisses.TabIndex = 1; this.pbxCaisses.TabStop = false; // // groupBox1 // this.groupBox1.Controls.Add(this.btnAddTime); this.groupBox1.Controls.Add(this.btnAddClients); this.groupBox1.Controls.Add(this.btnStartStop); this.groupBox1.Location = new System.Drawing.Point(856, 375); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(200, 125); this.groupBox1.TabIndex = 2; this.groupBox1.TabStop = false; this.groupBox1.Text = "controls"; // // btnAddTime // this.btnAddTime.Location = new System.Drawing.Point(6, 91); this.btnAddTime.Name = "btnAddTime"; this.btnAddTime.Size = new System.Drawing.Size(188, 29); this.btnAddTime.TabIndex = 5; this.btnAddTime.Text = "Passer une heure"; this.btnAddTime.UseVisualStyleBackColor = true; // // btnAddClients // this.btnAddClients.Location = new System.Drawing.Point(6, 56); this.btnAddClients.Name = "btnAddClients"; this.btnAddClients.Size = new System.Drawing.Size(188, 29); this.btnAddClients.TabIndex = 4; this.btnAddClients.Text = "Ajouter 5 clients"; this.btnAddClients.UseVisualStyleBackColor = true; // // btnStartStop // this.btnStartStop.Location = new System.Drawing.Point(6, 21); this.btnStartStop.Name = "btnStartStop"; this.btnStartStop.Size = new System.Drawing.Size(188, 29); this.btnStartStop.TabIndex = 3; this.btnStartStop.Text = "Start"; this.btnStartStop.UseVisualStyleBackColor = true; this.btnStartStop.Click += new System.EventHandler(this.btnStartStop_Click); // // groupBox2 // this.groupBox2.Controls.Add(this.lblTime); this.groupBox2.Controls.Add(this.lblAvgWaitingTime); this.groupBox2.Controls.Add(this.lblClients); this.groupBox2.Controls.Add(this.lblAvaiblePlaces); this.groupBox2.Controls.Add(this.lblClientsWithoutCheckout); this.groupBox2.Controls.Add(this.label1); this.groupBox2.Location = new System.Drawing.Point(856, 501); this.groupBox2.Name = "groupBox2"; this.groupBox2.Size = new System.Drawing.Size(200, 120); this.groupBox2.TabIndex = 6; this.groupBox2.TabStop = false; this.groupBox2.Text = "infos"; // // lblTime // this.lblTime.AutoSize = true; this.lblTime.Location = new System.Drawing.Point(6, 98); this.lblTime.Name = "lblTime"; this.lblTime.Size = new System.Drawing.Size(139, 16); this.lblTime.TabIndex = 5; this.lblTime.Text = "Time of the day : 13:00"; // // lblAvgWaitingTime // this.lblAvgWaitingTime.AutoSize = true; this.lblAvgWaitingTime.Location = new System.Drawing.Point(6, 82); this.lblAvgWaitingTime.Name = "lblAvgWaitingTime"; this.lblAvgWaitingTime.Size = new System.Drawing.Size(117, 16); this.lblAvgWaitingTime.TabIndex = 4; this.lblAvgWaitingTime.Text = "average wait : 0:03"; // // lblClients // this.lblClients.AutoSize = true; this.lblClients.Location = new System.Drawing.Point(6, 66); this.lblClients.Name = "lblClients"; this.lblClients.Size = new System.Drawing.Size(67, 16); this.lblClients.TabIndex = 3; this.lblClients.Text = "Clients: 50"; // // lblAvaiblePlaces // this.lblAvaiblePlaces.AutoSize = true; this.lblAvaiblePlaces.Location = new System.Drawing.Point(6, 50); this.lblAvaiblePlaces.Name = "lblAvaiblePlaces"; this.lblAvaiblePlaces.Size = new System.Drawing.Size(113, 16); this.lblAvaiblePlaces.TabIndex = 2; this.lblAvaiblePlaces.Text = "Avaible places : 8"; // // lblClientsWithoutCheckout // this.lblClientsWithoutCheckout.AutoSize = true; this.lblClientsWithoutCheckout.Location = new System.Drawing.Point(6, 34); this.lblClientsWithoutCheckout.Name = "lblClientsWithoutCheckout"; this.lblClientsWithoutCheckout.Size = new System.Drawing.Size(160, 16); this.lblClientsWithoutCheckout.TabIndex = 1; this.lblClientsWithoutCheckout.Text = "Clients without checkout: 0"; // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(6, 18); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(143, 16); this.label1.TabIndex = 0; this.label1.Text = "checkout opening : 10s"; // // tmrRefresh // this.tmrRefresh.Interval = 1000; this.tmrRefresh.Tick += new System.EventHandler(this.tmrRefresh_Tick); // // tmrDraw // this.tmrDraw.Interval = 17; this.tmrDraw.Tick += new System.EventHandler(this.tmrDraw_Tick); // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(1062, 630); this.Controls.Add(this.groupBox2); this.Controls.Add(this.groupBox1); this.Controls.Add(this.pbxCaisses); this.Controls.Add(this.pbxRayons); this.Name = "Form1"; this.Text = "Form1"; ((System.ComponentModel.ISupportInitialize)(this.pbxRayons)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pbxCaisses)).EndInit(); this.groupBox1.ResumeLayout(false); this.groupBox2.ResumeLayout(false); this.groupBox2.PerformLayout(); this.ResumeLayout(false); } #endregion private System.Windows.Forms.PictureBox pbxRayons; private System.Windows.Forms.PictureBox pbxCaisses; private System.Windows.Forms.GroupBox groupBox1; private System.Windows.Forms.Button btnAddTime; private System.Windows.Forms.Button btnAddClients; private System.Windows.Forms.Button btnStartStop; private System.Windows.Forms.GroupBox groupBox2; private System.Windows.Forms.Label lblTime; private System.Windows.Forms.Label lblAvgWaitingTime; private System.Windows.Forms.Label lblClients; private System.Windows.Forms.Label lblAvaiblePlaces; private System.Windows.Forms.Label lblClientsWithoutCheckout; private System.Windows.Forms.Label label1; private System.Windows.Forms.Timer tmrRefresh; private System.Windows.Forms.Timer tmrDraw; } }