我想在从数据库中检索数据后为dataGridView单元着色。如果单元格文本有" X"然后用GreenYellow颜色为细胞着色。我试着编写代码,但它没有用。
这是我到目前为止的代码:
private void button2_Click(object sender, EventArgs e)
{
string constring = "Data Source = localhost; port = 3306; username = root; password = 0159";
MySqlConnection conDataBase = new MySqlConnection(constring);
MySqlCommand cmdDataBase = new MySqlCommand("Select * from TopShineDB.Table1 ;", conDataBase);
using (MySqlConnection conn = new MySqlConnection(constring))
{
try {
MySqlDataAdapter sda = new MySqlDataAdapter();
sda.SelectCommand = cmdDataBase;
DataTable dt = new DataTable();
sda.Fill(dt);
foreach (DataRow item in dt.Rows)
{
int n = dataGridView1.Rows.Add();
dataGridView1.Rows[n].Cells[0].Value = item["Timee"].ToString();
dataGridView1.Rows[n].Cells[1].Value = item["CarColorNumber"].ToString();
dataGridView1.Rows[n].Cells[2].Value = item["Interior"].ToString();
dataGridView1.Rows[n].Cells[3].Value = item["Exterior"].ToString();
if (dataGridView1.CurrentCell.Value == item["Interior"] + " X".ToString())
{
dataGridView1.CurrentCell.Style.BackColor = Color.GreenYellow;
}
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
任何想法如何才能让它发挥作用?
由于
答案 0 :(得分:1)
您应该设置要更改的单元格的样式。
如果在下面的方法中包含加载数据和Scroll事件的方法,它将根据需要为单元格着色,并且仅在单元格可见时进行着色。 如果您有许多行
,这是一个重要的性能问题public void SetRowColor()
{
try
{
for (int i = 0; i < this.dataGridView.Rows.Count; i++)
{
if (this.dataGridView.Rows[i].Displayed)
{
if (this.dataGridView.Columns.Contains("Interior"))
{
if ((int)this.dataGridView.Rows[i].Cells["Interior"].Value == "X")
{
this.dataGridView.Rows[i].Cells["Interior"].Style.BackColor = Color.Green;
this.dataGridView.Rows[i].Cells["Interior"].Style.ForeColor = Color.White;
this.dataGridView.InvalidateRow(i);
}
else
{
this.dataGridView.Rows[i].Cells["Interior"].Style.BackColor = Color.White;
this.dataGridView.Rows[i].Cells["Interior"].Style.ForeColor = Color.Black;
this.dataGridView.InvalidateRow(i);
}
}
}
}
}
}
希望这能让你更接近你需要的东西。
托马斯