2

我的表单上有一个数据网格,它与 DataTable 绑定我使用此代码

public void SetDataSource(DataTable dt)
    {            
        dgr.DataSource = null;
        dgr.AutoGenerateColumns = false;            
        dgr.DataSource = dt;                 
    }

每次我单击标题或想要更改组合框时,单元格中的文本看起来都会一次又一次地被覆盖。以前没见过,看(这是第五次点击标题后)

在此处输入图像描述

数据网格是只读的,没有什么特别的设置我尝试了刷新方法更新方法更新数据表和许多其他的东西,但我放弃了..任何帮助将不胜感激

谢谢帕特

 // 
        // 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);
4

1 回答 1

2

我不知道你是如何设法设置这个 dataGridViewCellStyle30.BackColor = System.Drawing.Color.Transparent;的,但它会造成你所有的问题,试着改变它。它基本上不会重新填充您的背景,并且会在前一个文本上绘制新文本。将其更改为 dataGridViewCellStyle30 中的其他颜色。

于 2012-11-08T22:53:32.123 回答