我的表单上有一个数据网格,它与DataTable绑定 我用这个代码
public void SetDataSource(DataTable dt)
{
dgr.DataSource = null;
dgr.AutoGenerateColumns = false;
dgr.DataSource = dt;
}
每次我点击标题或想要更改组合框时,单元格中的文字会一次又一次地重写。之前从未见过,看(这是第五次点击标题后)
datagrid是readonly,没有什么特别的设置我尝试过 刷新方法 更新方法 更新数据表 和其他许多事情,但我放弃了.. 任何帮助将不胜感激
谢谢 专利
//
// dgr
//
this.dgr.AllowUserToAddRows = false;
this.dgr.AllowUserToDeleteRows = false;
this.dgr.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.dgr.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
this.dgr.BackgroundColor = System.Drawing.Color.Lavender;
dataGridViewCellStyle21.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
dataGridViewCellStyle21.BackColor = System.Drawing.SystemColors.Control;
dataGridViewCellStyle21.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
dataGridViewCellStyle21.ForeColor = System.Drawing.SystemColors.WindowText;
dataGridViewCellStyle21.SelectionBackColor = System.Drawing.SystemColors.Highlight;
dataGridViewCellStyle21.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
dataGridViewCellStyle21.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
this.dgr.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle21;
this.dgr.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dgr.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.Title,
this.SKU,
this.Popularity,
this.Profitability,
this.Qty,
this.Score,
this.EPT,
this.QPPF,
this.Overall,
this.URL});
this.dgr.EditMode = System.Windows.Forms.DataGridViewEditMode.EditOnEnter;
this.dgr.Enabled = false;
this.dgr.Location = new System.Drawing.Point(12, 60);
this.dgr.MultiSelect = false;
this.dgr.Name = "dgr";
this.dgr.RowHeadersWidth = 22;
dataGridViewCellStyle30.BackColor = System.Drawing.Color.Transparent;
this.dgr.RowsDefaultCellStyle = dataGridViewCellStyle30;
this.dgr.Size = new System.Drawing.Size(1292, 500);
this.dgr.TabIndex = 4;
this.dgr.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgr_CellDoubleClick);
this.dgr.CellMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dgr_CellMouseClick);
this.dgr.DataBindingComplete += new System.Windows.Forms.DataGridViewBindingCompleteEventHandler(this.dgr_DataBindingComplete);
this.dgr.MouseMove += new System.Windows.Forms.MouseEventHandler(this.dgr_MouseMove);
答案 0 :(得分:2)
我不知道你是如何设法设置这个dataGridViewCellStyle30.BackColor = System.Drawing.Color.Transparent;
的,但它正在解决你的所有问题,试着改变它。它基本上不会重新填充您的背景,并且会在之前的文本上绘制新文本。将其更改为dataGridViewCellStyle30中的其他颜色。