using System.Drawing; using System.Windows.Forms; namespace projet.View { partial class GestionAbsence { /// /// 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 private System.Windows.Forms.PictureBox pictureBoxTop; private System.Windows.Forms.PictureBox pictureBoxBottom; private System.Windows.Forms.Label labelTitle; private System.Windows.Forms.DataGridView dataGridViewAbsences; private System.Windows.Forms.GroupBox groupBoxNouvelleAbsence; private System.Windows.Forms.Label labelDateDebut; private System.Windows.Forms.TextBox textBoxDateDebut; private System.Windows.Forms.Label labelDateFin; private System.Windows.Forms.TextBox textBoxDateFin; private System.Windows.Forms.Label labelMotif; private System.Windows.Forms.ComboBox comboBoxMotif; private System.Windows.Forms.Button buttonAjouter; private System.Windows.Forms.GroupBox groupBoxSupprimerAbsence; private System.Windows.Forms.Label labelAbsence; private System.Windows.Forms.ComboBox comboBoxAbsence; private System.Windows.Forms.Button buttonSupprimer; private System.Windows.Forms.Panel panelSeparator; /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle(); this.pictureBoxTop = new System.Windows.Forms.PictureBox(); this.pictureBoxBottom = new System.Windows.Forms.PictureBox(); this.labelTitle = new System.Windows.Forms.Label(); this.dataGridViewAbsences = new System.Windows.Forms.DataGridView(); this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.groupBoxNouvelleAbsence = new System.Windows.Forms.GroupBox(); this.labelDateDebut = new System.Windows.Forms.Label(); this.textBoxDateDebut = new System.Windows.Forms.TextBox(); this.labelDateFin = new System.Windows.Forms.Label(); this.textBoxDateFin = new System.Windows.Forms.TextBox(); this.labelMotif = new System.Windows.Forms.Label(); this.comboBoxMotif = new System.Windows.Forms.ComboBox(); this.buttonAjouter = new System.Windows.Forms.Button(); this.groupBoxSupprimerAbsence = new System.Windows.Forms.GroupBox(); this.labelAbsence = new System.Windows.Forms.Label(); this.comboBoxAbsence = new System.Windows.Forms.ComboBox(); this.buttonSupprimer = new System.Windows.Forms.Button(); this.panelSeparator = new System.Windows.Forms.Panel(); this.buttonBack = new System.Windows.Forms.Button(); this.btnModifAbsence = new System.Windows.Forms.Button(); this.groupBox1 = new System.Windows.Forms.GroupBox(); ((System.ComponentModel.ISupportInitialize)(this.pictureBoxTop)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBoxBottom)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.dataGridViewAbsences)).BeginInit(); this.groupBoxNouvelleAbsence.SuspendLayout(); this.groupBoxSupprimerAbsence.SuspendLayout(); this.groupBox1.SuspendLayout(); this.SuspendLayout(); // // pictureBoxTop // this.pictureBoxTop.BackColor = System.Drawing.Color.SteelBlue; this.pictureBoxTop.Dock = System.Windows.Forms.DockStyle.Top; this.pictureBoxTop.Location = new System.Drawing.Point(0, 0); this.pictureBoxTop.Name = "pictureBoxTop"; this.pictureBoxTop.Size = new System.Drawing.Size(686, 156); this.pictureBoxTop.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBoxTop.TabIndex = 0; this.pictureBoxTop.TabStop = false; // // pictureBoxBottom // this.pictureBoxBottom.BackColor = System.Drawing.Color.SteelBlue; this.pictureBoxBottom.Dock = System.Windows.Forms.DockStyle.Bottom; this.pictureBoxBottom.Location = new System.Drawing.Point(0, 606); this.pictureBoxBottom.Name = "pictureBoxBottom"; this.pictureBoxBottom.Size = new System.Drawing.Size(686, 87); this.pictureBoxBottom.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBoxBottom.TabIndex = 1; this.pictureBoxBottom.TabStop = false; // // labelTitle // this.labelTitle.Font = new System.Drawing.Font("Segoe UI", 20F); this.labelTitle.Location = new System.Drawing.Point(0, 156); this.labelTitle.Name = "labelTitle"; this.labelTitle.Size = new System.Drawing.Size(686, 43); this.labelTitle.TabIndex = 2; this.labelTitle.Text = "Absences de : PRÉNOM"; this.labelTitle.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // dataGridViewAbsences // this.dataGridViewAbsences.AllowUserToAddRows = false; this.dataGridViewAbsences.AllowUserToDeleteRows = false; this.dataGridViewAbsences.AllowUserToResizeRows = false; this.dataGridViewAbsences.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1; this.dataGridViewAbsences.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.dataGridViewAbsences.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.dataGridViewTextBoxColumn1, this.dataGridViewTextBoxColumn2, this.dataGridViewTextBoxColumn3}); this.dataGridViewAbsences.EnableHeadersVisualStyles = false; this.dataGridViewAbsences.Location = new System.Drawing.Point(51, 208); this.dataGridViewAbsences.MultiSelect = false; this.dataGridViewAbsences.Name = "dataGridViewAbsences"; this.dataGridViewAbsences.ReadOnly = true; this.dataGridViewAbsences.RowHeadersVisible = false; dataGridViewCellStyle2.Font = new System.Drawing.Font("Segoe UI", 10F); this.dataGridViewAbsences.RowsDefaultCellStyle = dataGridViewCellStyle2; this.dataGridViewAbsences.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; this.dataGridViewAbsences.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; this.dataGridViewAbsences.Size = new System.Drawing.Size(583, 156); this.dataGridViewAbsences.TabIndex = 3; // // dataGridViewTextBoxColumn1 // this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1"; this.dataGridViewTextBoxColumn1.ReadOnly = true; // // dataGridViewTextBoxColumn2 // this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2"; this.dataGridViewTextBoxColumn2.ReadOnly = true; // // dataGridViewTextBoxColumn3 // this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3"; this.dataGridViewTextBoxColumn3.ReadOnly = true; // // groupBoxNouvelleAbsence // this.groupBoxNouvelleAbsence.Controls.Add(this.labelDateDebut); this.groupBoxNouvelleAbsence.Controls.Add(this.textBoxDateDebut); this.groupBoxNouvelleAbsence.Controls.Add(this.labelDateFin); this.groupBoxNouvelleAbsence.Controls.Add(this.textBoxDateFin); this.groupBoxNouvelleAbsence.Controls.Add(this.labelMotif); this.groupBoxNouvelleAbsence.Controls.Add(this.comboBoxMotif); this.groupBoxNouvelleAbsence.Controls.Add(this.buttonAjouter); this.groupBoxNouvelleAbsence.Font = new System.Drawing.Font("Segoe UI", 12F); this.groupBoxNouvelleAbsence.Location = new System.Drawing.Point(51, 381); this.groupBoxNouvelleAbsence.Name = "groupBoxNouvelleAbsence"; this.groupBoxNouvelleAbsence.Size = new System.Drawing.Size(274, 173); this.groupBoxNouvelleAbsence.TabIndex = 4; this.groupBoxNouvelleAbsence.TabStop = false; this.groupBoxNouvelleAbsence.Text = "Nouvelle absence"; // // labelDateDebut // this.labelDateDebut.AutoSize = true; this.labelDateDebut.Font = new System.Drawing.Font("Segoe UI", 10F); this.labelDateDebut.Location = new System.Drawing.Point(13, 35); this.labelDateDebut.Name = "labelDateDebut"; this.labelDateDebut.Size = new System.Drawing.Size(85, 19); this.labelDateDebut.TabIndex = 0; this.labelDateDebut.Text = "Date début :"; // // textBoxDateDebut // this.textBoxDateDebut.Font = new System.Drawing.Font("Segoe UI", 10F); this.textBoxDateDebut.Location = new System.Drawing.Point(103, 32); this.textBoxDateDebut.Name = "textBoxDateDebut"; this.textBoxDateDebut.Size = new System.Drawing.Size(146, 25); this.textBoxDateDebut.TabIndex = 1; // // labelDateFin // this.labelDateFin.AutoSize = true; this.labelDateFin.Font = new System.Drawing.Font("Segoe UI", 10F); this.labelDateFin.Location = new System.Drawing.Point(13, 65); this.labelDateFin.Name = "labelDateFin"; this.labelDateFin.Size = new System.Drawing.Size(64, 19); this.labelDateFin.TabIndex = 2; this.labelDateFin.Text = "Date fin :"; // // textBoxDateFin // this.textBoxDateFin.Font = new System.Drawing.Font("Segoe UI", 10F); this.textBoxDateFin.Location = new System.Drawing.Point(103, 62); this.textBoxDateFin.Name = "textBoxDateFin"; this.textBoxDateFin.Size = new System.Drawing.Size(146, 25); this.textBoxDateFin.TabIndex = 3; // // labelMotif // this.labelMotif.AutoSize = true; this.labelMotif.Font = new System.Drawing.Font("Segoe UI", 10F); this.labelMotif.Location = new System.Drawing.Point(13, 95); this.labelMotif.Name = "labelMotif"; this.labelMotif.Size = new System.Drawing.Size(49, 19); this.labelMotif.TabIndex = 4; this.labelMotif.Text = "Motif :"; // // comboBoxMotif // this.comboBoxMotif.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboBoxMotif.Font = new System.Drawing.Font("Segoe UI", 10F); this.comboBoxMotif.Location = new System.Drawing.Point(103, 93); this.comboBoxMotif.Name = "comboBoxMotif"; this.comboBoxMotif.Size = new System.Drawing.Size(146, 25); this.comboBoxMotif.TabIndex = 5; // // buttonAjouter // this.buttonAjouter.Font = new System.Drawing.Font("Segoe UI", 10F); this.buttonAjouter.Location = new System.Drawing.Point(13, 130); this.buttonAjouter.Name = "buttonAjouter"; this.buttonAjouter.Size = new System.Drawing.Size(86, 26); this.buttonAjouter.TabIndex = 6; this.buttonAjouter.Text = "Ajouter"; this.buttonAjouter.UseVisualStyleBackColor = true; this.buttonAjouter.Click += new System.EventHandler(this.buttonAjouter_Click); // // groupBoxSupprimerAbsence // this.groupBoxSupprimerAbsence.Controls.Add(this.labelAbsence); this.groupBoxSupprimerAbsence.Controls.Add(this.comboBoxAbsence); this.groupBoxSupprimerAbsence.Controls.Add(this.buttonSupprimer); this.groupBoxSupprimerAbsence.Font = new System.Drawing.Font("Segoe UI", 12F); this.groupBoxSupprimerAbsence.Location = new System.Drawing.Point(360, 381); this.groupBoxSupprimerAbsence.Name = "groupBoxSupprimerAbsence"; this.groupBoxSupprimerAbsence.Size = new System.Drawing.Size(274, 103); this.groupBoxSupprimerAbsence.TabIndex = 5; this.groupBoxSupprimerAbsence.TabStop = false; this.groupBoxSupprimerAbsence.Text = "Supprimer absence"; // // labelAbsence // this.labelAbsence.AutoSize = true; this.labelAbsence.Font = new System.Drawing.Font("Segoe UI", 10F); this.labelAbsence.Location = new System.Drawing.Point(13, 35); this.labelAbsence.Name = "labelAbsence"; this.labelAbsence.Size = new System.Drawing.Size(67, 19); this.labelAbsence.TabIndex = 0; this.labelAbsence.Text = "Absence :"; // // comboBoxAbsence // this.comboBoxAbsence.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboBoxAbsence.Font = new System.Drawing.Font("Segoe UI", 10F); this.comboBoxAbsence.Location = new System.Drawing.Point(86, 32); this.comboBoxAbsence.Name = "comboBoxAbsence"; this.comboBoxAbsence.Size = new System.Drawing.Size(146, 25); this.comboBoxAbsence.TabIndex = 1; // // buttonSupprimer // this.buttonSupprimer.Font = new System.Drawing.Font("Segoe UI", 10F); this.buttonSupprimer.Location = new System.Drawing.Point(13, 69); this.buttonSupprimer.Name = "buttonSupprimer"; this.buttonSupprimer.Size = new System.Drawing.Size(86, 26); this.buttonSupprimer.TabIndex = 2; this.buttonSupprimer.Text = "Supprimer"; this.buttonSupprimer.UseVisualStyleBackColor = true; this.buttonSupprimer.Click += new System.EventHandler(this.buttonSupprimer_Click); // // panelSeparator // this.panelSeparator.BackColor = System.Drawing.Color.Gray; this.panelSeparator.Location = new System.Drawing.Point(343, 399); this.panelSeparator.Name = "panelSeparator"; this.panelSeparator.Size = new System.Drawing.Size(2, 139); this.panelSeparator.TabIndex = 6; // // buttonBack // this.buttonBack.Location = new System.Drawing.Point(51, 560); this.buttonBack.Name = "buttonBack"; this.buttonBack.Size = new System.Drawing.Size(64, 20); this.buttonBack.TabIndex = 7; this.buttonBack.Text = "Retour"; this.buttonBack.UseVisualStyleBackColor = true; this.buttonBack.Click += new System.EventHandler(this.buttonBack_Click_1); // // btnModifAbsence // this.btnModifAbsence.Location = new System.Drawing.Point(6, 21); this.btnModifAbsence.Name = "btnModifAbsence"; this.btnModifAbsence.Size = new System.Drawing.Size(112, 23); this.btnModifAbsence.TabIndex = 8; this.btnModifAbsence.Text = "Modifier l\'absence"; this.btnModifAbsence.UseVisualStyleBackColor = true; this.btnModifAbsence.Click += new System.EventHandler(this.btnModifAbsence_Click); // // groupBox1 // this.groupBox1.Controls.Add(this.btnModifAbsence); this.groupBox1.Location = new System.Drawing.Point(360, 490); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(274, 64); this.groupBox1.TabIndex = 9; this.groupBox1.TabStop = false; this.groupBox1.Text = "Modifier absence"; // // GestionAbsence // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(686, 693); this.Controls.Add(this.groupBox1); this.Controls.Add(this.buttonBack); this.Controls.Add(this.pictureBoxTop); this.Controls.Add(this.pictureBoxBottom); this.Controls.Add(this.labelTitle); this.Controls.Add(this.dataGridViewAbsences); this.Controls.Add(this.groupBoxNouvelleAbsence); this.Controls.Add(this.groupBoxSupprimerAbsence); this.Controls.Add(this.panelSeparator); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; this.MaximizeBox = false; this.Name = "GestionAbsence"; this.Text = "Gestion des absences"; ((System.ComponentModel.ISupportInitialize)(this.pictureBoxTop)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBoxBottom)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.dataGridViewAbsences)).EndInit(); this.groupBoxNouvelleAbsence.ResumeLayout(false); this.groupBoxNouvelleAbsence.PerformLayout(); this.groupBoxSupprimerAbsence.ResumeLayout(false); this.groupBoxSupprimerAbsence.PerformLayout(); this.groupBox1.ResumeLayout(false); this.ResumeLayout(false); } #endregion private DataGridViewTextBoxColumn dataGridViewTextBoxColumn1; private DataGridViewTextBoxColumn dataGridViewTextBoxColumn2; private DataGridViewTextBoxColumn dataGridViewTextBoxColumn3; private Button buttonBack; private Button btnModifAbsence; private GroupBox groupBox1; } }