private void InitializeComponent() { DataGridViewCellStyle style = new DataGridViewCellStyle(); this.dgvMain = new CDataGridView(); ((ISupportInitialize)this.dgvMain).BeginInit(); base.SuspendLayout(); this.dgvMain.AllowUserToAddRows = false; this.dgvMain.AllowUserToDeleteRows = false; this.dgvMain.AllowUserToOrderColumns = true; style.BackColor = Color.FromArgb(0xe0, 0xe0, 0xe0); this.dgvMain.AlternatingRowsDefaultCellStyle = style; this.dgvMain.BackgroundColor = SystemColors.ControlLightLight; this.dgvMain.CellBorderStyle = DataGridViewCellBorderStyle.SingleHorizontal; this.dgvMain.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.dgvMain.Dock = DockStyle.Fill; this.dgvMain.EditMode = DataGridViewEditMode.EditProgrammatically; this.dgvMain.GridColor = SystemColors.ActiveBorder; this.dgvMain.Location = new Point(0, 0); this.dgvMain.Name = "dgvMain"; this.dgvMain.SelectionMode = DataGridViewSelectionMode.FullRowSelect; this.dgvMain.Size = new Size(150, 150); this.dgvMain.TabIndex = 2; this.dgvMain.CellMouseDown += new DataGridViewCellMouseEventHandler(this.dgvMain_CellMouseDown); base.AutoScaleDimensions = new SizeF(6f, 13f); base.AutoScaleMode = AutoScaleMode.Font; base.Controls.Add(this.dgvMain); base.Name = "DemoView"; ((ISupportInitialize)this.dgvMain).EndInit(); base.ResumeLayout(false); }
private void InitializeComponent() { DataGridViewCellStyle style = new DataGridViewCellStyle(); this.tblMain = new TableLayoutPanel(); this.btnSelectAll = new Button(); this.flpBottom = new FlowLayoutPanel(); this.cmbOptions = new ComboBox(); this.btnContinue = new Button(); this.lblHeader = new Label(); this.dgvFiles = new CDataGridView(); this.FileName = new DataGridViewTextBoxColumn(); this.Selected = new DataGridViewCheckBoxColumn(); this.tblMain.SuspendLayout(); this.flpBottom.SuspendLayout(); ((ISupportInitialize)this.dgvFiles).BeginInit(); base.SuspendLayout(); this.tblMain.ColumnCount = 1; this.tblMain.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 100f)); this.tblMain.Controls.Add(this.dgvFiles, 0, 1); this.tblMain.Controls.Add(this.btnSelectAll, 0, 2); this.tblMain.Controls.Add(this.flpBottom, 0, 3); this.tblMain.Controls.Add(this.lblHeader, 0, 0); this.tblMain.Dock = DockStyle.Fill; this.tblMain.Location = new Point(0, 0); this.tblMain.Name = "tblMain"; this.tblMain.RowCount = 4; this.tblMain.RowStyles.Add(new RowStyle(SizeType.Absolute, 32f)); this.tblMain.RowStyles.Add(new RowStyle(SizeType.Percent, 100f)); this.tblMain.RowStyles.Add(new RowStyle(SizeType.Absolute, 32f)); this.tblMain.RowStyles.Add(new RowStyle(SizeType.Absolute, 32f)); this.tblMain.Size = new Size(0x16d, 0x137); this.tblMain.TabIndex = 0; this.btnSelectAll.Anchor = AnchorStyles.Right; this.btnSelectAll.Location = new Point(0x11f, 0xfb); this.btnSelectAll.Name = "btnSelectAll"; this.btnSelectAll.Size = new Size(0x4b, 0x17); this.btnSelectAll.TabIndex = 3; this.btnSelectAll.Text = "Select All"; this.btnSelectAll.UseVisualStyleBackColor = true; this.btnSelectAll.Click += new EventHandler(this.btnSelectAll_Click); this.flpBottom.Controls.Add(this.btnContinue); this.flpBottom.Controls.Add(this.cmbOptions); this.flpBottom.Dock = DockStyle.Fill; this.flpBottom.FlowDirection = FlowDirection.RightToLeft; this.flpBottom.Location = new Point(0, 0x117); this.flpBottom.Margin = new Padding(0); this.flpBottom.Name = "flpBottom"; this.flpBottom.Size = new Size(0x16d, 0x20); this.flpBottom.TabIndex = 4; this.cmbOptions.Anchor = AnchorStyles.None; this.cmbOptions.DropDownStyle = ComboBoxStyle.DropDownList; this.cmbOptions.FormattingEnabled = true; this.cmbOptions.Location = new Point(0x9d, 4); this.cmbOptions.Margin = new Padding(3, 3, 6, 3); this.cmbOptions.Name = "cmbOptions"; this.cmbOptions.Size = new Size(0x79, 0x15); this.cmbOptions.TabIndex = 0; this.btnContinue.DialogResult = DialogResult.OK; this.btnContinue.Location = new Point(0x11f, 3); this.btnContinue.Name = "btnContinue"; this.btnContinue.Size = new Size(0x4b, 0x17); this.btnContinue.TabIndex = 1; this.btnContinue.Text = "Continue"; this.btnContinue.UseVisualStyleBackColor = true; this.lblHeader.Anchor = AnchorStyles.Left; this.lblHeader.AutoSize = true; this.lblHeader.Location = new Point(3, 9); this.lblHeader.Name = "lblHeader"; this.lblHeader.Size = new Size(13, 13); this.lblHeader.TabIndex = 5; this.lblHeader.Text = " "; this.dgvFiles.AllowUserToAddRows = false; this.dgvFiles.AllowUserToDeleteRows = false; this.dgvFiles.AllowUserToOrderColumns = true; style.BackColor = Color.FromArgb(0xe0, 0xe0, 0xe0); this.dgvFiles.AlternatingRowsDefaultCellStyle = style; this.dgvFiles.BackgroundColor = SystemColors.ControlLightLight; this.dgvFiles.CellBorderStyle = DataGridViewCellBorderStyle.SingleHorizontal; this.dgvFiles.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize; DataGridViewColumn[] dataGridViewColumns = new DataGridViewColumn[] { this.FileName, this.Selected }; this.dgvFiles.Columns.AddRange(dataGridViewColumns); this.dgvFiles.Dock = DockStyle.Fill; this.dgvFiles.EditMode = DataGridViewEditMode.EditOnEnter; this.dgvFiles.GridColor = SystemColors.ActiveBorder; this.dgvFiles.Location = new Point(3, 0x23); this.dgvFiles.Name = "dgvFiles"; this.dgvFiles.SelectionMode = DataGridViewSelectionMode.FullRowSelect; this.dgvFiles.Size = new Size(0x167, 0xd1); this.dgvFiles.TabIndex = 2; this.FileName.DataPropertyName = "FileName"; this.FileName.HeaderText = "FileName"; this.FileName.Name = "FileName"; this.FileName.ReadOnly = true; this.Selected.DataPropertyName = "Selected"; this.Selected.HeaderText = ""; this.Selected.Name = "Selected"; base.AcceptButton = this.btnContinue; base.AutoScaleDimensions = new SizeF(6f, 13f); base.AutoScaleMode = AutoScaleMode.Font; base.ClientSize = new Size(0x16d, 0x137); base.Controls.Add(this.tblMain); base.Name = "SyncStatusFile"; base.ShowIcon = false; this.Text = "SyncStatusFile"; this.tblMain.ResumeLayout(false); this.tblMain.PerformLayout(); this.flpBottom.ResumeLayout(false); ((ISupportInitialize)this.dgvFiles).EndInit(); base.ResumeLayout(false); }