• change color1


    private void Form1_Load(object sender, EventArgs e)         {             string str = "server=192.168.100.222;user=sa;pwd=p@ssw1rd;database=pwd1";             SqlConnection mycon = new SqlConnection(str);             try             {                 mycon.Open();                 DataSet mydt = new System.Data.DataSet();//建立填充数据库                 SqlDataAdapter mydpt = new SqlDataAdapter("select * from book",mycon);//建立适配器                 mydpt.Fill(mydt);                 dataGridView1.DataSource = mydt.Tables[0];//数据源绑定的是表不是数据库,所以要指定表,索引值从0开始  说明book这个表是数据库中第一个表

                    for (int i = 0; i < dataGridView1.Rows.Count; i++)                 {                     if (i % 2 == 0)                     {                         this.dataGridView1.Rows[i].DefaultCellStyle.BackColor = Color.Beige;                     }                     else                     {                         this.dataGridView1.Rows[i].DefaultCellStyle.BackColor = Color.Red;                                         }                 }                  //第二种方法                 this.dataGridView1.RowsDefaultCellStyle.BackColor = Color.Red;//DataGridView行单元格默认颜色                 this.dataGridView1.AlternatingRowsDefaultCellStyle.BackColor = Color.Violet;//奇数行单元格默认颜色

                }             catch (Exception ex)             {

                    MessageBox.Show(ex.Message);             }             finally             {                 mycon.Close();                         }         }

  • 相关阅读:
    testng 控制case运行顺序
    0518 Scrum 项目 5.0
    0506团队项目Scrum 项目1.0
    0429团队项目Scrum团队成立
    0429团队项目对师姐的软件的一些改进
    0422团队项目:二次开发
    0511团队项目2.0产品product backlog
    实验三进程调度模拟程序
    0517 SCRUM团队项目4.0
    0512 SCRUM团队项目3.0
  • 原文地址:https://www.cnblogs.com/qiu18359243869/p/10585443.html
Copyright © 2020-2023  润新知