1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
// DBG_LAgents
//
this.DBG_LAgents.AllowUserToAddRows = false;
this.DBG_LAgents.AllowUserToDeleteRows = false;
this.DBG_LAgents.AllowUserToResizeColumns = false;
this.DBG_LAgents.AllowUserToResizeRows = false;
dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(203)))), ((int)(((byte)(216)))), ((int)(((byte)(252)))));
this.DBG_LAgents.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
this.DBG_LAgents.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.DBG_LAgents.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
this.DBG_LAgents.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells;
this.DBG_LAgents.BackgroundColor = System.Drawing.SystemColors.Control;
this.DBG_LAgents.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.DBG_LAgents.ClipboardCopyMode = System.Windows.Forms.DataGridViewClipboardCopyMode.Disable;
dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(38)))), ((int)(((byte)(111)))));
dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
dataGridViewCellStyle2.ForeColor = System.Drawing.Color.WhiteSmoke;
dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
this.DBG_LAgents.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
this.DBG_LAgents.ColumnHeadersHeight = 24;
this.DBG_LAgents.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
this.DBG_LAgents.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.matricule,
this.nom,
this.prenom,
this.centre,
this.grade,
this.code_postal,
this.localite,
this.nb_lignes});
this.DBG_LAgents.EditMode = System.Windows.Forms.DataGridViewEditMode.EditProgrammatically;
this.DBG_LAgents.EnableHeadersVisualStyles = false;
this.DBG_LAgents.Location = new System.Drawing.Point(21, 172);
this.DBG_LAgents.MultiSelect = false;
this.DBG_LAgents.Name = "DBG_LAgents";
this.DBG_LAgents.RowHeadersVisible = false;
dataGridViewCellStyle3.ForeColor = System.Drawing.Color.Black;
this.DBG_LAgents.RowsDefaultCellStyle = dataGridViewCellStyle3;
this.DBG_LAgents.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
this.DBG_LAgents.Size = new System.Drawing.Size(1187, 600);
this.DBG_LAgents.TabIndex = 18; |
Partager